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

Side by Side Diff: components/sync_driver/proxy_data_type_controller.cc

Issue 408003002: [Sync] Fix namespace for sync_driver component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 5 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/sync_driver/proxy_data_type_controller.h" 5 #include "components/sync_driver/proxy_data_type_controller.h"
6 6
7 namespace browser_sync { 7 namespace sync_driver {
8 8
9 ProxyDataTypeController::ProxyDataTypeController( 9 ProxyDataTypeController::ProxyDataTypeController(
10 scoped_refptr<base::MessageLoopProxy> ui_thread, 10 scoped_refptr<base::MessageLoopProxy> ui_thread,
11 syncer::ModelType type) 11 syncer::ModelType type)
12 : DataTypeController(ui_thread, base::Closure(), DisableTypeCallback()), 12 : DataTypeController(ui_thread, base::Closure(), DisableTypeCallback()),
13 state_(NOT_RUNNING), 13 state_(NOT_RUNNING),
14 type_(type) { 14 type_(type) {
15 DCHECK(syncer::ProxyTypes().Has(type_)); 15 DCHECK(syncer::ProxyTypes().Has(type_));
16 } 16 }
17 17
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 63
64 void ProxyDataTypeController::OnSingleDatatypeUnrecoverableError( 64 void ProxyDataTypeController::OnSingleDatatypeUnrecoverableError(
65 const tracked_objects::Location& from_here, const std::string& message) { 65 const tracked_objects::Location& from_here, const std::string& message) {
66 NOTIMPLEMENTED(); 66 NOTIMPLEMENTED();
67 } 67 }
68 68
69 void ProxyDataTypeController::OnModelLoaded() { 69 void ProxyDataTypeController::OnModelLoaded() {
70 NOTIMPLEMENTED(); 70 NOTIMPLEMENTED();
71 } 71 }
72 72
73 } // namespace browser_sync 73 } // namespace sync_driver
OLDNEW
« no previous file with comments | « components/sync_driver/proxy_data_type_controller.h ('k') | components/sync_driver/shared_change_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698