mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:38:10 +00:00
LibWeb: Fix a few const-ness issues
This commit is contained in:
parent
70a2ca7fc0
commit
c0b2fa74ac
36 changed files with 123 additions and 121 deletions
|
@ -45,7 +45,7 @@ public:
|
|||
// https://html.spec.whatwg.org/multipage/workers.html#the-workerglobalscope-common-interface
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/workers.html#dom-workerglobalscope-self
|
||||
JS::NonnullGCPtr<WorkerGlobalScope> self() const { return *this; }
|
||||
JS::NonnullGCPtr<WorkerGlobalScope const> self() const { return *this; }
|
||||
|
||||
JS::NonnullGCPtr<WorkerLocation> location() const;
|
||||
JS::NonnullGCPtr<WorkerNavigator> navigator() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue