| OLD | NEW |
| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 ReportUnrecoverableErrorFunction | 79 ReportUnrecoverableErrorFunction |
| 80 report_unrecoverable_error_function) OVERRIDE; | 80 report_unrecoverable_error_function) OVERRIDE; |
| 81 virtual void ThrowUnrecoverableError() OVERRIDE; | 81 virtual void ThrowUnrecoverableError() OVERRIDE; |
| 82 virtual ModelTypeSet InitialSyncEndedTypes() OVERRIDE; | 82 virtual ModelTypeSet InitialSyncEndedTypes() OVERRIDE; |
| 83 virtual ModelTypeSet GetTypesWithEmptyProgressMarkerToken( | 83 virtual ModelTypeSet GetTypesWithEmptyProgressMarkerToken( |
| 84 ModelTypeSet types) OVERRIDE; | 84 ModelTypeSet types) OVERRIDE; |
| 85 virtual bool PurgePartiallySyncedTypes() OVERRIDE; | 85 virtual bool PurgePartiallySyncedTypes() OVERRIDE; |
| 86 virtual void UpdateCredentials(const SyncCredentials& credentials) OVERRIDE; | 86 virtual void UpdateCredentials(const SyncCredentials& credentials) OVERRIDE; |
| 87 virtual void UpdateEnabledTypes( | 87 virtual void UpdateEnabledTypes( |
| 88 const ModelTypeSet& enabled_types) OVERRIDE; | 88 const ModelTypeSet& enabled_types) OVERRIDE; |
| 89 virtual void SetInvalidationHandler( |
| 90 const std::string& handler_name, |
| 91 SyncNotifierObserver* handler) OVERRIDE; |
| 89 virtual void UpdateRegisteredInvalidationIds( | 92 virtual void UpdateRegisteredInvalidationIds( |
| 90 SyncNotifierObserver* handler, const ObjectIdSet& ids) OVERRIDE; | 93 const std::string& handler_name, const ObjectIdSet& ids) OVERRIDE; |
| 91 virtual void StartSyncingNormally( | 94 virtual void StartSyncingNormally( |
| 92 const ModelSafeRoutingInfo& routing_info) OVERRIDE; | 95 const ModelSafeRoutingInfo& routing_info) OVERRIDE; |
| 93 virtual void SetEncryptionPassphrase(const std::string& passphrase, | 96 virtual void SetEncryptionPassphrase(const std::string& passphrase, |
| 94 bool is_explicit) OVERRIDE; | 97 bool is_explicit) OVERRIDE; |
| 95 virtual void SetDecryptionPassphrase(const std::string& passphrase) OVERRIDE; | 98 virtual void SetDecryptionPassphrase(const std::string& passphrase) OVERRIDE; |
| 96 virtual void ConfigureSyncer( | 99 virtual void ConfigureSyncer( |
| 97 ConfigureReason reason, | 100 ConfigureReason reason, |
| 98 const ModelTypeSet& types_to_config, | 101 const ModelTypeSet& types_to_config, |
| 99 const ModelSafeRoutingInfo& new_routing_info, | 102 const ModelSafeRoutingInfo& new_routing_info, |
| 100 const base::Closure& ready_task, | 103 const base::Closure& ready_task, |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 // conflict resolver) updated the nigori's encryption keys in this chrome | 408 // conflict resolver) updated the nigori's encryption keys in this chrome |
| 406 // instantiation. | 409 // instantiation. |
| 407 int nigori_overwrite_count_; | 410 int nigori_overwrite_count_; |
| 408 | 411 |
| 409 DISALLOW_COPY_AND_ASSIGN(SyncManagerImpl); | 412 DISALLOW_COPY_AND_ASSIGN(SyncManagerImpl); |
| 410 }; | 413 }; |
| 411 | 414 |
| 412 } // namespace syncer | 415 } // namespace syncer |
| 413 | 416 |
| 414 #endif // SYNC_INTERNAL_API_SYNC_MANAGER_H_ | 417 #endif // SYNC_INTERNAL_API_SYNC_MANAGER_H_ |
| OLD | NEW |