Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/loader/DocumentThreadableLoader.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.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h
diff --git a/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h b/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h
index a55966137827920f60aa75830077e1a3616c26c1..f4552e5beea4697ba135e41783359f92eb1fc1ac 100644
--- a/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h
+++ b/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h
@@ -178,7 +178,7 @@ class CORE_EXPORT DocumentThreadableLoader final : public ThreadableLoader, priv
RefPtrWillBePersistent<RawResource> m_resource;
// End of ResourceOwner re-implementation, see above.
- SecurityOrigin* securityOrigin() const;
+ SecurityOrigin* getSecurityOrigin() const;
Document& document() const;
ThreadableLoaderClient* m_client;
@@ -195,7 +195,7 @@ class CORE_EXPORT DocumentThreadableLoader final : public ThreadableLoader, priv
// True while the initial URL and all the URLs of the redirects
// this object has followed, if any, are same-origin to
- // securityOrigin().
+ // getSecurityOrigin().
bool m_sameOriginRequest;
// Set to true if the current request is cross-origin and not simple.
bool m_crossOriginNonSimpleRequest;

Powered by Google App Engine