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

Side by Side Diff: components/sync/model/stub_model_type_service.cc

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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
« no previous file with comments | « components/sync/model/stub_model_type_service.h ('k') | components/sync/model/sync_change.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/api/stub_model_type_service.h" 5 #include "components/sync/model/stub_model_type_service.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/ptr_util.h" 8 #include "base/memory/ptr_util.h"
9 #include "components/sync/api/fake_model_type_change_processor.h" 9 #include "components/sync/model/fake_model_type_change_processor.h"
10 10
11 namespace syncer { 11 namespace syncer {
12 12
13 StubModelTypeService::StubModelTypeService() 13 StubModelTypeService::StubModelTypeService()
14 : StubModelTypeService(base::Bind(&FakeModelTypeChangeProcessor::Create)) {} 14 : StubModelTypeService(base::Bind(&FakeModelTypeChangeProcessor::Create)) {}
15 15
16 StubModelTypeService::StubModelTypeService( 16 StubModelTypeService::StubModelTypeService(
17 const ChangeProcessorFactory& change_processor_factory) 17 const ChangeProcessorFactory& change_processor_factory)
18 : ModelTypeService(change_processor_factory, PREFERENCES) {} 18 : ModelTypeService(change_processor_factory, PREFERENCES) {}
19 19
(...skipping 29 matching lines...) Expand all
49 return std::string(); 49 return std::string();
50 } 50 }
51 51
52 void StubModelTypeService::OnChangeProcessorSet() {} 52 void StubModelTypeService::OnChangeProcessorSet() {}
53 53
54 bool StubModelTypeService::HasChangeProcessor() const { 54 bool StubModelTypeService::HasChangeProcessor() const {
55 return change_processor() != nullptr; 55 return change_processor() != nullptr;
56 } 56 }
57 57
58 } // namespace syncer 58 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/model/stub_model_type_service.h ('k') | components/sync/model/sync_change.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698