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

Unified Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2573523002: Rename request() method to getRequest(). (Closed)
Patch Set: Fixing a mistake I've made in USBDevice.cpp Created 4 years 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/dom/Document.cpp
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
index 4ed7156de3b22c2601610f71ec599ad06cf937e8..391c79e01e2da2d206a7eba2ef72b6c8ec5358c3 100644
--- a/third_party/WebKit/Source/core/dom/Document.cpp
+++ b/third_party/WebKit/Source/core/dom/Document.cpp
@@ -4552,7 +4552,7 @@ void Document::setCookie(const String& value, ExceptionState& exceptionState) {
const AtomicString& Document::referrer() const {
if (loader())
- return loader()->request().httpReferrer();
+ return loader()->getRequest().httpReferrer();
return nullAtom;
}

Powered by Google App Engine
This is Rietveld 408576698