Index: chrome/browser/sync/glue/sync_backend_host.cc |
diff --git a/chrome/browser/sync/glue/sync_backend_host.cc b/chrome/browser/sync/glue/sync_backend_host.cc |
index 1a322cbb216dbfaff720748fd18d9c3695fe7b3c..66ef592fc06d02a8d17b91c7022aed62faea2813 100644 |
--- a/chrome/browser/sync/glue/sync_backend_host.cc |
+++ b/chrome/browser/sync/glue/sync_backend_host.cc |
@@ -33,8 +33,8 @@ |
#include "chrome/common/chrome_version_info.h" |
#include "chrome/common/net/gaia/gaia_constants.h" |
#include "content/browser/browser_thread.h" |
+#include "content/common/content_client.h" |
#include "content/common/notification_service.h" |
-#include "webkit/glue/webkit_glue.h" |
static const int kSaveChangesIntervalSeconds = 10; |
static const FilePath::CharType kSyncDataFolderName[] = |
@@ -66,7 +66,7 @@ SyncBackendHost::SyncBackendHost(const std::string& name, |
profile_(profile), |
sync_prefs_(sync_prefs), |
name_(name), |
- sync_notifier_factory_(webkit_glue::GetUserAgent(GURL()), |
+ sync_notifier_factory_(content::GetUserAgent(GURL()), |
profile_->GetRequestContext(), |
*CommandLine::ForCurrentProcess()), |
frontend_(NULL), |
@@ -83,7 +83,7 @@ SyncBackendHost::SyncBackendHost() |
profile_(NULL), |
sync_prefs_(NULL), |
name_("Unknown"), |
- sync_notifier_factory_(webkit_glue::GetUserAgent(GURL()), |
+ sync_notifier_factory_(content::GetUserAgent(GURL()), |
NULL, |
*CommandLine::ForCurrentProcess()), |
frontend_(NULL), |