| OLD | NEW | 
|---|
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ | 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ | 
| 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ | 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ | 
| 7 #pragma once | 7 #pragma once | 
| 8 | 8 | 
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" | 
| 10 #include "chrome/browser/sync/profile_sync_factory.h" | 10 #include "chrome/browser/sync/profile_sync_factory.h" | 
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 53 | 53 | 
| 54   virtual SyncComponents CreateThemeSyncComponents( | 54   virtual SyncComponents CreateThemeSyncComponents( | 
| 55       ProfileSyncService* profile_sync_service, | 55       ProfileSyncService* profile_sync_service, | 
| 56       browser_sync::UnrecoverableErrorHandler* error_handler); | 56       browser_sync::UnrecoverableErrorHandler* error_handler); | 
| 57 | 57 | 
| 58   virtual SyncComponents CreateTypedUrlSyncComponents( | 58   virtual SyncComponents CreateTypedUrlSyncComponents( | 
| 59       ProfileSyncService* profile_sync_service, | 59       ProfileSyncService* profile_sync_service, | 
| 60       history::HistoryBackend* history_backend, | 60       history::HistoryBackend* history_backend, | 
| 61       browser_sync::UnrecoverableErrorHandler* error_handler); | 61       browser_sync::UnrecoverableErrorHandler* error_handler); | 
| 62 | 62 | 
| 63   virtual SyncComponents CreateSessionSyncComponents( |  | 
| 64       ProfileSyncService* profile_sync_service, |  | 
| 65       browser_sync::UnrecoverableErrorHandler* error_handler); |  | 
| 66 |  | 
| 67  private: | 63  private: | 
| 68   Profile* profile_; | 64   Profile* profile_; | 
| 69   CommandLine* command_line_; | 65   CommandLine* command_line_; | 
| 70 | 66 | 
| 71   DISALLOW_COPY_AND_ASSIGN(ProfileSyncFactoryImpl); | 67   DISALLOW_COPY_AND_ASSIGN(ProfileSyncFactoryImpl); | 
| 72 }; | 68 }; | 
| 73 | 69 | 
| 74 #endif  // CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ | 70 #endif  // CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ | 
| OLD | NEW | 
|---|