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

Unified Diff: third_party/WebKit/Source/core/html/parser/XSSAuditor.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/html/parser/XSSAuditor.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/XSSAuditor.cpp b/third_party/WebKit/Source/core/html/parser/XSSAuditor.cpp
index de4a50a4a0110662c838168659da7cee6f0ca2f0..a91871eda3df876a67ebbedf2e7777f826bf309f 100644
--- a/third_party/WebKit/Source/core/html/parser/XSSAuditor.cpp
+++ b/third_party/WebKit/Source/core/html/parser/XSSAuditor.cpp
@@ -424,7 +424,7 @@ void XSSAuditor::init(Document* document, XSSAuditorDelegate* auditorDelegate) {
if (auditorDelegate)
auditorDelegate->setReportURL(xssProtectionReportURL.copy());
- EncodedFormData* httpBody = documentLoader->request().httpBody();
+ EncodedFormData* httpBody = documentLoader->getRequest().httpBody();
if (httpBody && !httpBody->isEmpty())
m_httpBodyAsString = httpBody->flattenToString();
}

Powered by Google App Engine
This is Rietveld 408576698