| Index: chrome/browser/sync/sessions/sync_session_context.h
|
| ===================================================================
|
| --- chrome/browser/sync/sessions/sync_session_context.h (revision 58702)
|
| +++ chrome/browser/sync/sessions/sync_session_context.h (working copy)
|
| @@ -31,7 +31,6 @@
|
|
|
| namespace browser_sync {
|
|
|
| -class AuthWatcher;
|
| class ConflictResolver;
|
| class ModelSafeWorkerRegistrar;
|
| class ServerConnectionManager;
|
| @@ -43,13 +42,11 @@
|
| class SyncSessionContext {
|
| public:
|
| SyncSessionContext(ServerConnectionManager* connection_manager,
|
| - AuthWatcher* auth_watcher,
|
| syncable::DirectoryManager* directory_manager,
|
| ModelSafeWorkerRegistrar* model_safe_worker_registrar)
|
| : resolver_(NULL),
|
| syncer_event_channel_(NULL),
|
| connection_manager_(connection_manager),
|
| - auth_watcher_(auth_watcher),
|
| directory_manager_(directory_manager),
|
| registrar_(model_safe_worker_registrar),
|
| extensions_activity_monitor_(new ExtensionsActivityMonitor()),
|
| @@ -68,9 +65,6 @@
|
| ServerConnectionManager* connection_manager() {
|
| return connection_manager_;
|
| }
|
| - AuthWatcher* auth_watcher() {
|
| - return auth_watcher_;
|
| - }
|
| syncable::DirectoryManager* directory_manager() {
|
| return directory_manager_;
|
| }
|
| @@ -125,7 +119,6 @@
|
| SyncerEventChannel* syncer_event_channel_;
|
|
|
| ServerConnectionManager* const connection_manager_;
|
| - AuthWatcher* const auth_watcher_;
|
| syncable::DirectoryManager* const directory_manager_;
|
|
|
| // A registrar of workers capable of processing work closures on a thread
|
|
|