| Index: chrome/browser/chrome_to_mobile_service_factory.cc
 | 
| ===================================================================
 | 
| --- chrome/browser/chrome_to_mobile_service_factory.cc	(revision 152744)
 | 
| +++ chrome/browser/chrome_to_mobile_service_factory.cc	(working copy)
 | 
| @@ -5,9 +5,9 @@
 | 
|  #include "chrome/browser/chrome_to_mobile_service_factory.h"
 | 
|  
 | 
|  #include "chrome/browser/chrome_to_mobile_service.h"
 | 
| +#include "chrome/browser/content_settings/cookie_settings.h"
 | 
|  #include "chrome/browser/profiles/profile_dependency_manager.h"
 | 
|  #include "chrome/browser/signin/token_service_factory.h"
 | 
| -#include "chrome/browser/sync/profile_sync_service_factory.h"
 | 
|  
 | 
|  // static
 | 
|  ChromeToMobileServiceFactory* ChromeToMobileServiceFactory::GetInstance() {
 | 
| @@ -33,8 +33,8 @@
 | 
|  ChromeToMobileServiceFactory::ChromeToMobileServiceFactory()
 | 
|      : ProfileKeyedServiceFactory("ChromeToMobileService",
 | 
|                                   ProfileDependencyManager::GetInstance()) {
 | 
| -  DependsOn(ProfileSyncServiceFactory::GetInstance());
 | 
|    DependsOn(TokenServiceFactory::GetInstance());
 | 
| +  DependsOn(CookieSettings::Factory::GetInstance());
 | 
|    // TODO(msw): Uncomment this once it exists.
 | 
|    // DependsOn(PrefServiceFactory::GetInstance());
 | 
|  }
 | 
| 
 |