Index: android_webview/common/aw_content_client.cc |
diff --git a/android_webview/common/aw_content_client.cc b/android_webview/common/aw_content_client.cc |
index 856e7b75790857dd72afb677579770839a31204f..b1071c1128d1c84c7a55652fbf14fc85d0c1813e 100644 |
--- a/android_webview/common/aw_content_client.cc |
+++ b/android_webview/common/aw_content_client.cc |
@@ -7,10 +7,10 @@ |
#include "base/basictypes.h" |
#include "base/command_line.h" |
#include "content/public/common/content_switches.h" |
+#include "content/public/common/user_agent.h" |
#include "ipc/ipc_message.h" |
#include "ui/base/l10n/l10n_util.h" |
#include "ui/base/resource/resource_bundle.h" |
-#include "webkit/common/user_agent/user_agent_util.h" |
namespace { |
@@ -32,7 +32,7 @@ std::string GetUserAgent() { |
switches::kUseMobileUserAgent)) { |
product += " Mobile"; |
} |
- return webkit_glue::BuildUserAgentFromProduct(product); |
+ return content::BuildUserAgentFromProduct(product); |
} |
std::string AwContentClient::GetProduct() const { |