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

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

Issue 8596017: sync: rename ProfileSyncFactory to ProfileSyncComponentsFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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/profile_sync_components_factory_impl.h
diff --git a/chrome/browser/sync/profile_sync_factory_impl.h b/chrome/browser/sync/profile_sync_components_factory_impl.h
similarity index 84%
rename from chrome/browser/sync/profile_sync_factory_impl.h
rename to chrome/browser/sync/profile_sync_components_factory_impl.h
index 426dd8708136410b0a288612b42e77fc69d90af3..5210469663e5cdc6a38a33a0c9685bea27867e70 100644
--- a/chrome/browser/sync/profile_sync_factory_impl.h
+++ b/chrome/browser/sync/profile_sync_components_factory_impl.h
@@ -2,25 +2,26 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__
-#define CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__
+#ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__
+#define CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__
#pragma once
#include <string>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
-#include "chrome/browser/sync/profile_sync_factory.h"
+#include "chrome/browser/sync/profile_sync_components_factory.h"
class CommandLine;
class Profile;
-class ProfileSyncFactoryImpl : public ProfileSyncFactory {
+class ProfileSyncComponentsFactoryImpl : public ProfileSyncComponentsFactory {
public:
- ProfileSyncFactoryImpl(Profile* profile, CommandLine* command_line);
- virtual ~ProfileSyncFactoryImpl() {}
+ ProfileSyncComponentsFactoryImpl(Profile* profile,
+ CommandLine* command_line);
+ virtual ~ProfileSyncComponentsFactoryImpl() {}
- // ProfileSyncFactory interface.
+ // ProfileSyncComponentsFactory interface.
virtual ProfileSyncService* CreateProfileSyncService(
const std::string& cros_user) OVERRIDE;
@@ -97,7 +98,7 @@ class ProfileSyncFactoryImpl : public ProfileSyncFactory {
Profile* profile_;
CommandLine* command_line_;
- DISALLOW_COPY_AND_ASSIGN(ProfileSyncFactoryImpl);
+ DISALLOW_COPY_AND_ASSIGN(ProfileSyncComponentsFactoryImpl);
};
-#endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__
+#endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__

Powered by Google App Engine
This is Rietveld 408576698