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

Side by Side Diff: sync/sessions/status_controller.cc

Issue 9699057: [Sync] Move 'sync' target to sync/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Tim's comments Created 8 years, 9 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/sessions/status_controller.h ('k') | sync/sessions/status_controller_unittest.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 #include "chrome/browser/sync/sessions/status_controller.h" 5 #include "sync/sessions/status_controller.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "chrome/browser/sync/protocol/sync_protocol_error.h" 10 #include "sync/protocol/sync_protocol_error.h"
11 #include "chrome/browser/sync/syncable/model_type.h" 11 #include "sync/syncable/model_type.h"
12 12
13 namespace browser_sync { 13 namespace browser_sync {
14 namespace sessions { 14 namespace sessions {
15 15
16 using syncable::FIRST_REAL_MODEL_TYPE; 16 using syncable::FIRST_REAL_MODEL_TYPE;
17 using syncable::MODEL_TYPE_COUNT; 17 using syncable::MODEL_TYPE_COUNT;
18 18
19 StatusController::StatusController(const ModelSafeRoutingInfo& routes) 19 StatusController::StatusController(const ModelSafeRoutingInfo& routes)
20 : shared_(&is_dirty_), 20 : shared_(&is_dirty_),
21 per_model_group_deleter_(&per_model_group_), 21 per_model_group_deleter_(&per_model_group_),
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 void StatusController::set_debug_info_sent() { 301 void StatusController::set_debug_info_sent() {
302 shared_.control_params.debug_info_sent = true; 302 shared_.control_params.debug_info_sent = true;
303 } 303 }
304 304
305 bool StatusController::debug_info_sent() const { 305 bool StatusController::debug_info_sent() const {
306 return shared_.control_params.debug_info_sent; 306 return shared_.control_params.debug_info_sent;
307 } 307 }
308 308
309 } // namespace sessions 309 } // namespace sessions
310 } // namespace browser_sync 310 } // namespace browser_sync
OLDNEW
« no previous file with comments | « sync/sessions/status_controller.h ('k') | sync/sessions/status_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698