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

Side by Side Diff: sync/internal_api/sync_manager_impl.h

Issue 10824161: [Sync] Avoid unregistering object IDs on shutdown (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Work around brittle unit test Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 SYNC_INTERNAL_API_SYNC_MANAGER_H_ 5 #ifndef SYNC_INTERNAL_API_SYNC_MANAGER_H_
6 #define SYNC_INTERNAL_API_SYNC_MANAGER_H_ 6 #define SYNC_INTERNAL_API_SYNC_MANAGER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 ReportUnrecoverableErrorFunction 80 ReportUnrecoverableErrorFunction
81 report_unrecoverable_error_function) OVERRIDE; 81 report_unrecoverable_error_function) OVERRIDE;
82 virtual void ThrowUnrecoverableError() OVERRIDE; 82 virtual void ThrowUnrecoverableError() OVERRIDE;
83 virtual ModelTypeSet InitialSyncEndedTypes() OVERRIDE; 83 virtual ModelTypeSet InitialSyncEndedTypes() OVERRIDE;
84 virtual ModelTypeSet GetTypesWithEmptyProgressMarkerToken( 84 virtual ModelTypeSet GetTypesWithEmptyProgressMarkerToken(
85 ModelTypeSet types) OVERRIDE; 85 ModelTypeSet types) OVERRIDE;
86 virtual bool PurgePartiallySyncedTypes() OVERRIDE; 86 virtual bool PurgePartiallySyncedTypes() OVERRIDE;
87 virtual void UpdateCredentials(const SyncCredentials& credentials) OVERRIDE; 87 virtual void UpdateCredentials(const SyncCredentials& credentials) OVERRIDE;
88 virtual void UpdateEnabledTypes( 88 virtual void UpdateEnabledTypes(
89 const ModelTypeSet& enabled_types) OVERRIDE; 89 const ModelTypeSet& enabled_types) OVERRIDE;
90 virtual void RegisterInvalidationHandler(
91 SyncNotifierObserver* handler) OVERRIDE;
90 virtual void UpdateRegisteredInvalidationIds( 92 virtual void UpdateRegisteredInvalidationIds(
91 SyncNotifierObserver* handler, 93 SyncNotifierObserver* handler,
92 const ObjectIdSet& ids) OVERRIDE; 94 const ObjectIdSet& ids) OVERRIDE;
95 virtual void UnregisterInvalidationHandler(
96 SyncNotifierObserver* handler) OVERRIDE;
93 virtual void StartSyncingNormally( 97 virtual void StartSyncingNormally(
94 const ModelSafeRoutingInfo& routing_info) OVERRIDE; 98 const ModelSafeRoutingInfo& routing_info) OVERRIDE;
95 virtual void SetEncryptionPassphrase(const std::string& passphrase, 99 virtual void SetEncryptionPassphrase(const std::string& passphrase,
96 bool is_explicit) OVERRIDE; 100 bool is_explicit) OVERRIDE;
97 virtual void SetDecryptionPassphrase(const std::string& passphrase) OVERRIDE; 101 virtual void SetDecryptionPassphrase(const std::string& passphrase) OVERRIDE;
98 virtual void ConfigureSyncer( 102 virtual void ConfigureSyncer(
99 ConfigureReason reason, 103 ConfigureReason reason,
100 const ModelTypeSet& types_to_config, 104 const ModelTypeSet& types_to_config,
101 const ModelSafeRoutingInfo& new_routing_info, 105 const ModelSafeRoutingInfo& new_routing_info,
102 const base::Closure& ready_task, 106 const base::Closure& ready_task,
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 // conflict resolver) updated the nigori's encryption keys in this chrome 419 // conflict resolver) updated the nigori's encryption keys in this chrome
416 // instantiation. 420 // instantiation.
417 int nigori_overwrite_count_; 421 int nigori_overwrite_count_;
418 422
419 DISALLOW_COPY_AND_ASSIGN(SyncManagerImpl); 423 DISALLOW_COPY_AND_ASSIGN(SyncManagerImpl);
420 }; 424 };
421 425
422 } // namespace syncer 426 } // namespace syncer
423 427
424 #endif // SYNC_INTERNAL_API_SYNC_MANAGER_H_ 428 #endif // SYNC_INTERNAL_API_SYNC_MANAGER_H_
OLDNEW
« no previous file with comments | « sync/internal_api/public/test/fake_sync_manager.h ('k') | sync/internal_api/sync_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698