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

Unified Diff: content/public/common/page_state.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « content/public/common/menu_item.h ('k') | content/public/common/referrer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/page_state.cc
diff --git a/content/public/common/page_state.cc b/content/public/common/page_state.cc
index 54c00e3dc01849a98bd36598aabc046dee86fd2c..1e429b80df676c736da7e35e243e49cf2094ca5d 100644
--- a/content/public/common/page_state.cc
+++ b/content/public/common/page_state.cc
@@ -76,13 +76,13 @@ PageState PageState::CreateForTesting(
state.top.http_body.is_null = false;
if (optional_body_data) {
ExplodedHttpBodyElement element;
- element.type = WebKit::WebHTTPBody::Element::TypeData;
+ element.type = blink::WebHTTPBody::Element::TypeData;
element.data = optional_body_data;
state.top.http_body.elements.push_back(element);
}
if (optional_body_file_path) {
ExplodedHttpBodyElement element;
- element.type = WebKit::WebHTTPBody::Element::TypeFile;
+ element.type = blink::WebHTTPBody::Element::TypeFile;
element.file_path =
ToNullableString16(optional_body_file_path->AsUTF8Unsafe());
state.top.http_body.elements.push_back(element);
« no previous file with comments | « content/public/common/menu_item.h ('k') | content/public/common/referrer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698