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

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

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 | « sync/engine/all_status.h ('k') | sync/engine/sync_scheduler.h » ('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 #include "sync/engine/all_status.h" 5 #include "sync/engine/all_status.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/port.h" 10 #include "base/port.h"
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 void AllStatus::IncrementNotificationsReceived() { 132 void AllStatus::IncrementNotificationsReceived() {
133 ScopedStatusLock lock(this); 133 ScopedStatusLock lock(this);
134 ++status_.notifications_received; 134 ++status_.notifications_received;
135 } 135 }
136 136
137 void AllStatus::SetEncryptedTypes(ModelTypeSet types) { 137 void AllStatus::SetEncryptedTypes(ModelTypeSet types) {
138 ScopedStatusLock lock(this); 138 ScopedStatusLock lock(this);
139 status_.encrypted_types = types; 139 status_.encrypted_types = types;
140 } 140 }
141 141
142 void AllStatus::SetThrottledTypes(const ModelTypeSet& types) { 142 void AllStatus::SetThrottledTypes(ModelTypeSet types) {
143 ScopedStatusLock lock(this); 143 ScopedStatusLock lock(this);
144 status_.throttled_types = types; 144 status_.throttled_types = types;
145 } 145 }
146 146
147 void AllStatus::SetCryptographerReady(bool ready) { 147 void AllStatus::SetCryptographerReady(bool ready) {
148 ScopedStatusLock lock(this); 148 ScopedStatusLock lock(this);
149 status_.cryptographer_ready = ready; 149 status_.cryptographer_ready = ready;
150 } 150 }
151 151
152 void AllStatus::SetCryptoHasPendingKeys(bool has_pending_keys) { 152 void AllStatus::SetCryptoHasPendingKeys(bool has_pending_keys) {
153 ScopedStatusLock lock(this); 153 ScopedStatusLock lock(this);
154 status_.crypto_has_pending_keys = has_pending_keys; 154 status_.crypto_has_pending_keys = has_pending_keys;
155 } 155 }
156 156
157 void AllStatus::SetUniqueId(const std::string& guid) { 157 void AllStatus::SetUniqueId(const std::string& guid) {
158 ScopedStatusLock lock(this); 158 ScopedStatusLock lock(this);
159 status_.unique_id = guid; 159 status_.unique_id = guid;
160 } 160 }
161 161
162 ScopedStatusLock::ScopedStatusLock(AllStatus* allstatus) 162 ScopedStatusLock::ScopedStatusLock(AllStatus* allstatus)
163 : allstatus_(allstatus) { 163 : allstatus_(allstatus) {
164 allstatus->mutex_.Acquire(); 164 allstatus->mutex_.Acquire();
165 } 165 }
166 166
167 ScopedStatusLock::~ScopedStatusLock() { 167 ScopedStatusLock::~ScopedStatusLock() {
168 allstatus_->mutex_.Release(); 168 allstatus_->mutex_.Release();
169 } 169 }
170 170
171 } // namespace syncer 171 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/engine/all_status.h ('k') | sync/engine/sync_scheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698