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

Unified Diff: content/child/blink_platform_impl.cc

Issue 186883002: Move user_agent code from webkit/ to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rm build directory Created 6 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 | « content/browser/devtools/devtools_http_handler_impl.cc ('k') | content/child/npapi/plugin_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/blink_platform_impl.cc
diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
index 10e061a1db13c4a669ab8003311aa8ad9a095c08..4607a2b041428824bf88b7716be0969d4a733150 100644
--- a/content/child/blink_platform_impl.cc
+++ b/content/child/blink_platform_impl.cc
@@ -370,10 +370,9 @@ WebString BlinkPlatformImpl::userAgent(const WebURL& url) {
return userAgent();
}
-WebData BlinkPlatformImpl::parseDataURL(
- const WebURL& url,
- WebString& mimetype_out,
- WebString& charset_out) {
+WebData BlinkPlatformImpl::parseDataURL(const WebURL& url,
+ WebString& mimetype_out,
+ WebString& charset_out) {
std::string mime_type, char_set, data;
if (net::DataURL::Parse(url, &mime_type, &char_set, &data)
&& net::IsSupportedMimeType(mime_type)) {
« no previous file with comments | « content/browser/devtools/devtools_http_handler_impl.cc ('k') | content/child/npapi/plugin_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698