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

Unified Diff: chrome/browser/chromeos/drive/drive_integration_service.cc

Issue 186883002: Move user_agent code from webkit/ to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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: chrome/browser/chromeos/drive/drive_integration_service.cc
diff --git a/chrome/browser/chromeos/drive/drive_integration_service.cc b/chrome/browser/chromeos/drive/drive_integration_service.cc
index fd3f32b7a7049f5c97dc6db42da717680d13645d..5ad987b095eb18c784ef85ade473cfc9b7405354 100644
--- a/chrome/browser/chromeos/drive/drive_integration_service.cc
+++ b/chrome/browser/chromeos/drive/drive_integration_service.cc
@@ -40,12 +40,12 @@
#include "components/browser_context_keyed_service/browser_context_dependency_manager.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
+#include "content/public/common/user_agent_util.h"
#include "google_apis/drive/auth_service.h"
#include "google_apis/drive/gdata_wapi_url_generator.h"
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "webkit/browser/fileapi/external_mount_points.h"
-#include "webkit/common/user_agent/user_agent_util.h"
using content::BrowserContext;
using content::BrowserThread;
@@ -82,7 +82,7 @@ std::string GetDriveUserAgent() {
// This part is <client_name>/<version>.
const char kLibraryInfo[] = "chrome-cc/none";
- const std::string os_cpu_info = webkit_glue::BuildOSCpuInfo();
+ const std::string os_cpu_info = content::BuildOSCpuInfo();
// Add "gzip" to receive compressed data from the server.
// (see https://developers.google.com/drive/performance)

Powered by Google App Engine
This is Rietveld 408576698