mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 07:38:10 +00:00
LibWeb: Move BrowsingContext into HTML/
Browsing contexts are defined by the HTML specification, so let's move them into the HTML directory. :^)
This commit is contained in:
parent
2b866e3c9b
commit
7c57961c61
43 changed files with 73 additions and 75 deletions
|
@ -13,7 +13,7 @@ namespace Web {
|
|||
|
||||
class EditEventHandler {
|
||||
public:
|
||||
explicit EditEventHandler(BrowsingContext& frame)
|
||||
explicit EditEventHandler(HTML::BrowsingContext& frame)
|
||||
: m_frame(frame)
|
||||
{
|
||||
}
|
||||
|
@ -25,7 +25,7 @@ public:
|
|||
virtual void handle_insert(DOM::Position, u32 code_point);
|
||||
|
||||
private:
|
||||
BrowsingContext& m_frame;
|
||||
HTML::BrowsingContext& m_frame;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue