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

Unified Diff: third_party/WebKit/Source/core/dom/Document.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
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMURL.cpp ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/Document.h
diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h
index c13baa73ea10ee32bdfa423596af15c784038257..49e3bf20c21f04c5980c8d9865a22f47296f5389 100644
--- a/third_party/WebKit/Source/core/dom/Document.h
+++ b/third_party/WebKit/Source/core/dom/Document.h
@@ -230,7 +230,7 @@ public:
using ContainerNode::ref;
using ContainerNode::deref;
#endif
- using SecurityContext::securityOrigin;
+ using SecurityContext::getSecurityOrigin;
using SecurityContext::contentSecurityPolicy;
using TreeScope::getElementById;
@@ -326,8 +326,8 @@ public:
void setXMLStandalone(bool, ExceptionState&);
void setHasXMLDeclaration(bool hasXMLDeclaration) { m_hasXMLDeclaration = hasXMLDeclaration ? 1 : 0; }
- String origin() const { return securityOrigin()->toString(); }
- String suborigin() const { return securityOrigin()->suboriginName(); }
+ String origin() const { return getSecurityOrigin()->toString(); }
+ String suborigin() const { return getSecurityOrigin()->suboriginName(); }
String visibilityState() const;
PageVisibilityState pageVisibilityState() const;
@@ -1092,7 +1092,7 @@ private:
ScriptedIdleTaskController& ensureScriptedIdleTaskController();
void initSecurityContext(const DocumentInit&);
SecurityContext& securityContext() final { return *this; }
- EventQueue* eventQueue() const final;
+ EventQueue* getEventQueue() const final;
// FIXME: Rename the StyleRecalc state to LayoutTreeUpdate.
bool hasPendingStyleRecalc() const { return m_lifecycle.state() == DocumentLifecycle::VisualUpdatePending; }
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMURL.cpp ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698