OLD | NEW |
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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 56 |
57 // Progress counters. All const methods may return NULL if the | 57 // Progress counters. All const methods may return NULL if the |
58 // progress structure doesn't exist, but all non-const methods | 58 // progress structure doesn't exist, but all non-const methods |
59 // auto-create. | 59 // auto-create. |
60 const ConflictProgress* conflict_progress() const; | 60 const ConflictProgress* conflict_progress() const; |
61 ConflictProgress* mutable_conflict_progress(); | 61 ConflictProgress* mutable_conflict_progress(); |
62 const UpdateProgress* update_progress() const; | 62 const UpdateProgress* update_progress() const; |
63 UpdateProgress* mutable_update_progress(); | 63 UpdateProgress* mutable_update_progress(); |
64 const ConflictProgress* GetUnrestrictedConflictProgress( | 64 const ConflictProgress* GetUnrestrictedConflictProgress( |
65 ModelSafeGroup group) const; | 65 ModelSafeGroup group) const; |
| 66 ConflictProgress* GetUnrestrictedMutableConflictProgressForTest( |
| 67 ModelSafeGroup group); |
66 const UpdateProgress* GetUnrestrictedUpdateProgress( | 68 const UpdateProgress* GetUnrestrictedUpdateProgress( |
67 ModelSafeGroup group) const; | 69 ModelSafeGroup group) const; |
| 70 UpdateProgress* GetUnrestrictedMutableUpdateProgressForTest( |
| 71 ModelSafeGroup group); |
68 | 72 |
69 // ClientToServer messages. | 73 // ClientToServer messages. |
70 const ClientToServerMessage& commit_message() { | 74 const ClientToServerMessage& commit_message() { |
71 return shared_.commit_message; | 75 return shared_.commit_message; |
72 } | 76 } |
73 ClientToServerMessage* mutable_commit_message() { | 77 ClientToServerMessage* mutable_commit_message() { |
74 return &shared_.commit_message; | 78 return &shared_.commit_message; |
75 } | 79 } |
76 const ClientToServerResponse& commit_response() const { | 80 const ClientToServerResponse& commit_response() const { |
77 return shared_.commit_response; | 81 return shared_.commit_response; |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 } | 295 } |
292 private: | 296 private: |
293 StatusController* status_; | 297 StatusController* status_; |
294 DISALLOW_COPY_AND_ASSIGN(ScopedModelSafeGroupRestriction); | 298 DISALLOW_COPY_AND_ASSIGN(ScopedModelSafeGroupRestriction); |
295 }; | 299 }; |
296 | 300 |
297 } | 301 } |
298 } | 302 } |
299 | 303 |
300 #endif // CHROME_BROWSER_SYNC_SESSIONS_STATUS_CONTROLLER_H_ | 304 #endif // CHROME_BROWSER_SYNC_SESSIONS_STATUS_CONTROLLER_H_ |
OLD | NEW |