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

Side by Side Diff: chrome/browser/sync/sessions/status_controller.h

Issue 8772074: [Sync] Convert syncable/ directory to ModelEnumSet (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // StatusController handles all counter and status related number crunching and 5 // StatusController handles all counter and status related number crunching and
6 // state tracking on behalf of a SyncSession. It 'controls' the model data 6 // state tracking on behalf of a SyncSession. It 'controls' the model data
7 // defined in session_state.h. The most important feature of StatusController 7 // defined in session_state.h. The most important feature of StatusController
8 // is the ScopedModelSafetyRestriction. When one of these is active, the 8 // is the ScopedModelSafetyRestriction. When one of these is active, the
9 // underlying data set exposed via accessors is swapped out to the appropriate 9 // underlying data set exposed via accessors is swapped out to the appropriate
10 // set for the restricted ModelSafeGroup behind the scenes. For example, if 10 // set for the restricted ModelSafeGroup behind the scenes. For example, if
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 } 76 }
77 ClientToServerMessage* mutable_commit_message() { 77 ClientToServerMessage* mutable_commit_message() {
78 return &shared_.commit_message; 78 return &shared_.commit_message;
79 } 79 }
80 const ClientToServerResponse& commit_response() const { 80 const ClientToServerResponse& commit_response() const {
81 return shared_.commit_response; 81 return shared_.commit_response;
82 } 82 }
83 ClientToServerResponse* mutable_commit_response() { 83 ClientToServerResponse* mutable_commit_response() {
84 return &shared_.commit_response; 84 return &shared_.commit_response;
85 } 85 }
86 const syncable::ModelTypeBitSet& updates_request_types() const { 86 const syncable::ModelEnumSet updates_request_types() const {
87 return shared_.updates_request_types; 87 return shared_.updates_request_types;
88 } 88 }
89 void set_updates_request_types(const syncable::ModelTypeBitSet& value) { 89 void set_updates_request_types(syncable::ModelEnumSet value) {
90 shared_.updates_request_types = value; 90 shared_.updates_request_types = value;
91 } 91 }
92 const ClientToServerResponse& updates_response() const { 92 const ClientToServerResponse& updates_response() const {
93 return shared_.updates_response; 93 return shared_.updates_response;
94 } 94 }
95 ClientToServerResponse* mutable_updates_response() { 95 ClientToServerResponse* mutable_updates_response() {
96 return &shared_.updates_response; 96 return &shared_.updates_response;
97 } 97 }
98 98
99 // Errors and SyncerStatus. 99 // Errors and SyncerStatus.
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 } 295 }
296 private: 296 private:
297 StatusController* status_; 297 StatusController* status_;
298 DISALLOW_COPY_AND_ASSIGN(ScopedModelSafeGroupRestriction); 298 DISALLOW_COPY_AND_ASSIGN(ScopedModelSafeGroupRestriction);
299 }; 299 };
300 300
301 } 301 }
302 } 302 }
303 303
304 #endif // CHROME_BROWSER_SYNC_SESSIONS_STATUS_CONTROLLER_H_ 304 #endif // CHROME_BROWSER_SYNC_SESSIONS_STATUS_CONTROLLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/sync/sessions/session_state.h ('k') | chrome/browser/sync/sessions/sync_session_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698