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

Side by Side Diff: sync/engine/all_status.h

Issue 10905045: [Sync] Pass ModelTypeSet by value everywhere (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync to head Created 8 years, 3 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
« no previous file with comments | « no previous file | sync/engine/all_status.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // 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
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
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_
OLDNEW
« no previous file with comments | « no previous file | sync/engine/all_status.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698