| 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 // The AllStatus object watches various sync engine components and aggregates | 5 // The AllStatus object watches various sync engine components and aggregates |
| 6 // the status of all of them into one place. | 6 // the status of all of them into one place. |
| 7 | 7 |
| 8 #ifndef SYNC_INTERNAL_API_ALL_STATUS_H_ | 8 #ifndef SYNC_INTERNAL_API_ALL_STATUS_H_ |
| 9 #define SYNC_INTERNAL_API_ALL_STATUS_H_ | 9 #define SYNC_INTERNAL_API_ALL_STATUS_H_ |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 virtual void OnSyncEngineEvent(const SyncEngineEvent& event) OVERRIDE; | 41 virtual void OnSyncEngineEvent(const SyncEngineEvent& event) OVERRIDE; |
| 42 | 42 |
| 43 SyncStatus status() const; | 43 SyncStatus status() const; |
| 44 | 44 |
| 45 void SetNotificationsEnabled(bool notifications_enabled); | 45 void SetNotificationsEnabled(bool notifications_enabled); |
| 46 | 46 |
| 47 void IncrementNotifiableCommits(); | 47 void IncrementNotifiableCommits(); |
| 48 | 48 |
| 49 void IncrementNotificationsReceived(); | 49 void IncrementNotificationsReceived(); |
| 50 | 50 |
| 51 void SetThrottledTypes(const ModelTypeSet &types); | 51 void SetThrottledTypes(ModelTypeSet types); |
| 52 | 52 |
| 53 void SetEncryptedTypes(ModelTypeSet types); | 53 void SetEncryptedTypes(ModelTypeSet types); |
| 54 void SetCryptographerReady(bool ready); | 54 void SetCryptographerReady(bool ready); |
| 55 void SetCryptoHasPendingKeys(bool has_pending_keys); | 55 void SetCryptoHasPendingKeys(bool has_pending_keys); |
| 56 | 56 |
| 57 void SetUniqueId(const std::string& guid); | 57 void SetUniqueId(const std::string& guid); |
| 58 | 58 |
| 59 protected: | 59 protected: |
| 60 // Examines syncer to calculate syncing and the unsynced count, | 60 // Examines syncer to calculate syncing and the unsynced count, |
| 61 // and returns a Status with new values. | 61 // and returns a Status with new values. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 72 public: | 72 public: |
| 73 explicit ScopedStatusLock(AllStatus* allstatus); | 73 explicit ScopedStatusLock(AllStatus* allstatus); |
| 74 ~ScopedStatusLock(); | 74 ~ScopedStatusLock(); |
| 75 protected: | 75 protected: |
| 76 AllStatus* allstatus_; | 76 AllStatus* allstatus_; |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 } // namespace syncer | 79 } // namespace syncer |
| 80 | 80 |
| 81 #endif // SYNC_INTERNAL_API_ALL_STATUS_H_ | 81 #endif // SYNC_INTERNAL_API_ALL_STATUS_H_ |
| OLD | NEW |