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

Unified Diff: third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.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/modules/worklet/WorkletGlobalScope.h
diff --git a/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.h b/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.h
index 2546c2ff46d988280b927099cd34ee0d897ab579..e1d6357929711240599ecf85d46c726d2370f108 100644
--- a/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.h
+++ b/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.h
@@ -42,7 +42,7 @@ public:
WorkletConsole* console();
// WorkerOrWorkletGlobalScope
- ScriptWrappable* scriptWrappable() const final { return const_cast<WorkletGlobalScope*>(this); }
+ ScriptWrappable* getScriptWrappable() const final { return const_cast<WorkletGlobalScope*>(this); }
WorkerOrWorkletScriptController* scriptController() final { return m_scriptController.get(); }
// ScriptWrappable
@@ -53,10 +53,10 @@ public:
void disableEval(const String& errorMessage) final;
String userAgent() const final { return m_userAgent; }
SecurityContext& securityContext() final { return *this; }
- EventQueue* eventQueue() const final { ASSERT_NOT_REACHED(); return nullptr; } // WorkletGlobalScopes don't have an event queue.
+ EventQueue* getEventQueue() const final { ASSERT_NOT_REACHED(); return nullptr; } // WorkletGlobalScopes don't have an event queue.
bool isSecureContext(String& errorMessage, const SecureContextCheck = StandardSecureContextCheck) const final;
- using SecurityContext::securityOrigin;
+ using SecurityContext::getSecurityOrigin;
using SecurityContext::contentSecurityPolicy;
DOMTimerCoordinator* timers() final { ASSERT_NOT_REACHED(); return nullptr; } // WorkletGlobalScopes don't have timers.

Powered by Google App Engine
This is Rietveld 408576698