| 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); | |
| 68 const UpdateProgress* GetUnrestrictedUpdateProgress( | 66 const UpdateProgress* GetUnrestrictedUpdateProgress( |
| 69 ModelSafeGroup group) const; | 67 ModelSafeGroup group) const; |
| 70 UpdateProgress* GetUnrestrictedMutableUpdateProgressForTest( | |
| 71 ModelSafeGroup group); | |
| 72 | 68 |
| 73 // ClientToServer messages. | 69 // ClientToServer messages. |
| 74 const ClientToServerMessage& commit_message() { | 70 const ClientToServerMessage& commit_message() { |
| 75 return shared_.commit_message; | 71 return shared_.commit_message; |
| 76 } | 72 } |
| 77 ClientToServerMessage* mutable_commit_message() { | 73 ClientToServerMessage* mutable_commit_message() { |
| 78 return &shared_.commit_message; | 74 return &shared_.commit_message; |
| 79 } | 75 } |
| 80 const ClientToServerResponse& commit_response() const { | 76 const ClientToServerResponse& commit_response() const { |
| 81 return shared_.commit_response; | 77 return shared_.commit_response; |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 } | 291 } |
| 296 private: | 292 private: |
| 297 StatusController* status_; | 293 StatusController* status_; |
| 298 DISALLOW_COPY_AND_ASSIGN(ScopedModelSafeGroupRestriction); | 294 DISALLOW_COPY_AND_ASSIGN(ScopedModelSafeGroupRestriction); |
| 299 }; | 295 }; |
| 300 | 296 |
| 301 } | 297 } |
| 302 } | 298 } |
| 303 | 299 |
| 304 #endif // CHROME_BROWSER_SYNC_SESSIONS_STATUS_CONTROLLER_H_ | 300 #endif // CHROME_BROWSER_SYNC_SESSIONS_STATUS_CONTROLLER_H_ |
| OLD | NEW |