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

Side by Side Diff: sync/internal_api/sync_rollback_manager_base.cc

Issue 351523003: sync: Mass rename of non-blocking sync classes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: const ref some smart pointers Created 6 years, 6 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 "sync/internal_api/sync_rollback_manager_base.h" 5 #include "sync/internal_api/sync_rollback_manager_base.h"
6 6
7 #include "sync/internal_api/public/base/model_type.h" 7 #include "sync/internal_api/public/base/model_type.h"
8 #include "sync/internal_api/public/internal_components_factory.h" 8 #include "sync/internal_api/public/internal_components_factory.h"
9 #include "sync/internal_api/public/read_node.h" 9 #include "sync/internal_api/public/read_node.h"
10 #include "sync/internal_api/public/read_transaction.h" 10 #include "sync/internal_api/public/read_transaction.h"
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 OnInitializationComplete( 227 OnInitializationComplete(
228 MakeWeakHandle(base::WeakPtr<JsBackend>()), 228 MakeWeakHandle(base::WeakPtr<JsBackend>()),
229 MakeWeakHandle(base::WeakPtr<DataTypeDebugInfoListener>()), 229 MakeWeakHandle(base::WeakPtr<DataTypeDebugInfoListener>()),
230 false, InitialSyncEndedTypes())); 230 false, InitialSyncEndedTypes()));
231 } 231 }
232 232
233 std::string SyncRollbackManagerBase::GetOwnerName() const { 233 std::string SyncRollbackManagerBase::GetOwnerName() const {
234 return ""; 234 return "";
235 } 235 }
236 236
237 syncer::SyncCoreProxy* SyncRollbackManagerBase::GetSyncCoreProxy() { 237 syncer::SyncContextProxy* SyncRollbackManagerBase::GetSyncContextProxy() {
238 return NULL; 238 return NULL;
239 } 239 }
240 240
241 ScopedVector<syncer::ProtocolEvent> 241 ScopedVector<syncer::ProtocolEvent>
242 SyncRollbackManagerBase::GetBufferedProtocolEvents() { 242 SyncRollbackManagerBase::GetBufferedProtocolEvents() {
243 return ScopedVector<syncer::ProtocolEvent>().Pass(); 243 return ScopedVector<syncer::ProtocolEvent>().Pass();
244 } 244 }
245 245
246 scoped_ptr<base::ListValue> SyncRollbackManagerBase::GetAllNodesForType( 246 scoped_ptr<base::ListValue> SyncRollbackManagerBase::GetAllNodesForType(
247 syncer::ModelType type) { 247 syncer::ModelType type) {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 337
338 void SyncRollbackManagerBase::UnregisterDirectoryTypeDebugInfoObserver( 338 void SyncRollbackManagerBase::UnregisterDirectoryTypeDebugInfoObserver(
339 syncer::TypeDebugInfoObserver* observer) {} 339 syncer::TypeDebugInfoObserver* observer) {}
340 340
341 bool SyncRollbackManagerBase::HasDirectoryTypeDebugInfoObserver( 341 bool SyncRollbackManagerBase::HasDirectoryTypeDebugInfoObserver(
342 syncer::TypeDebugInfoObserver* observer) { return false; } 342 syncer::TypeDebugInfoObserver* observer) { return false; }
343 343
344 void SyncRollbackManagerBase::RequestEmitDebugInfo() {} 344 void SyncRollbackManagerBase::RequestEmitDebugInfo() {}
345 345
346 } // namespace syncer 346 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/internal_api/sync_rollback_manager_base.h ('k') | sync/internal_api/test/fake_sync_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698