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

Unified Diff: trunk/src/android_webview/common/aw_content_client.cc

Issue 192283002: Revert 255858 "Simplify the user agent code some more since afte..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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
Index: trunk/src/android_webview/common/aw_content_client.cc
===================================================================
--- trunk/src/android_webview/common/aw_content_client.cc (revision 255866)
+++ trunk/src/android_webview/common/aw_content_client.cc (working copy)
@@ -12,20 +12,16 @@
#include "ui/base/resource/resource_bundle.h"
#include "webkit/common/user_agent/user_agent_util.h"
-namespace {
+namespace android_webview {
-std::string GetProduct() {
+std::string AwContentClient::GetProduct() const {
// "Chrome/XX.0.0.0" identifies that this WebView is derived from the
// corresponding Chromium version XX.
// TODO(torne): Use chrome/VERSION file. See http://crbug.com/297522
return "Chrome/33.0.0.0";
}
-}
-
-namespace android_webview {
-
-std::string GetUserAgent() {
+std::string AwContentClient::GetUserAgent() const {
// "Version/4.0" had been hardcoded in the legacy WebView.
std::string product = "Version/4.0 " + GetProduct();
if (CommandLine::ForCurrentProcess()->HasSwitch(
@@ -35,14 +31,6 @@
return webkit_glue::BuildUserAgentFromProduct(product);
}
-std::string AwContentClient::GetProduct() const {
- return ::GetProduct();
-}
-
-std::string AwContentClient::GetUserAgent() const {
- return android_webview::GetUserAgent();
-}
-
base::string16 AwContentClient::GetLocalizedString(int message_id) const {
// TODO(boliu): Used only by WebKit, so only bundle those resources for
// Android WebView.
« no previous file with comments | « trunk/src/android_webview/common/aw_content_client.h ('k') | trunk/src/android_webview/native/aw_settings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698