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

Unified Diff: chrome/browser/sync/abstract_profile_sync_service_test.h

Issue 10696087: [Sync] Move ModelType and related classes to 'syncer' namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort headers, update copyrights Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/abstract_profile_sync_service_test.h
diff --git a/chrome/browser/sync/abstract_profile_sync_service_test.h b/chrome/browser/sync/abstract_profile_sync_service_test.h
index 48b6dec393304ef7449beb259d0e2ae71696413d..94a214a09c6ce577bab16bdd3a99781fb4fbdfb9 100644
--- a/chrome/browser/sync/abstract_profile_sync_service_test.h
+++ b/chrome/browser/sync/abstract_profile_sync_service_test.h
@@ -32,9 +32,9 @@ struct UserShare;
class ProfileSyncServiceTestHelper {
public:
- static const std::string GetTagForType(syncable::ModelType model_type);
+ static const std::string GetTagForType(syncer::ModelType model_type);
- static bool CreateRoot(syncable::ModelType model_type,
+ static bool CreateRoot(syncer::ModelType model_type,
syncer::UserShare* service,
syncer::TestIdFactory* ids);
@@ -57,7 +57,7 @@ class AbstractProfileSyncServiceTest : public testing::Test {
virtual void TearDown() OVERRIDE;
- bool CreateRoot(syncable::ModelType model_type);
+ bool CreateRoot(syncer::ModelType model_type);
static ProfileKeyedService* BuildTokenService(Profile* profile);
protected:
@@ -73,7 +73,7 @@ class AbstractProfileSyncServiceTest : public testing::Test {
class CreateRootHelper {
public:
CreateRootHelper(AbstractProfileSyncServiceTest* test,
- syncable::ModelType model_type);
+ syncer::ModelType model_type);
virtual ~CreateRootHelper();
const base::Closure& callback() const;
@@ -84,7 +84,7 @@ class CreateRootHelper {
base::Closure callback_;
AbstractProfileSyncServiceTest* test_;
- syncable::ModelType model_type_;
+ syncer::ModelType model_type_;
bool success_;
};

Powered by Google App Engine
This is Rietveld 408576698