Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(674)

Unified Diff: third_party/WebKit/Source/core/workers/WorkerGlobalScope.h

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
index e5a2dbac9cf01f9f38f6a1b4bc42dec2fe63063d..58169218320a876c550eaec0a23f7a5a4428971a 100644
--- a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
+++ b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
@@ -73,8 +73,8 @@ public:
bool isWorkerGlobalScope() const final { return true; }
- ExecutionContext* executionContext() const final;
- ScriptWrappable* scriptWrappable() const final
+ ExecutionContext* getExecutionContext() const final;
+ ScriptWrappable* getScriptWrappable() const final
{
return const_cast<WorkerGlobalScope*>(this);
}
@@ -119,7 +119,7 @@ public:
v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Local<v8::Object> wrapper) final;
// ExecutionContext
- WorkerEventQueue* eventQueue() const final;
+ WorkerEventQueue* getEventQueue() const final;
SecurityContext& securityContext() final { return *this; }
bool isContextThread() const final;
@@ -135,7 +135,7 @@ public:
WorkerClients* clients() { return m_workerClients.get(); }
- using SecurityContext::securityOrigin;
+ using SecurityContext::getSecurityOrigin;
using SecurityContext::contentSecurityPolicy;
void addConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) final;
« no previous file with comments | « third_party/WebKit/Source/core/workers/WorkerConsole.cpp ('k') | third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698