| Index: chrome/browser/sync/test/integration/sync_extension_helper.h
|
| diff --git a/chrome/browser/sync/test/integration/sync_extension_helper.h b/chrome/browser/sync/test/integration/sync_extension_helper.h
|
| index 6cdca7d547439615f7382c5781ce9b39fb45be48..9a5867f2016983ec5bee7add537243a5d10e70c1 100644
|
| --- a/chrome/browser/sync/test/integration/sync_extension_helper.h
|
| +++ b/chrome/browser/sync/test/integration/sync_extension_helper.h
|
| @@ -14,14 +14,11 @@
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/singleton.h"
|
| #include "chrome/common/extensions/extension.h"
|
| +#include "chrome/common/extensions/manifest.h"
|
|
|
| class Profile;
|
| class SyncTest;
|
|
|
| -namespace extensions {
|
| -class Extension;
|
| -}
|
| -
|
| class SyncExtensionHelper {
|
| public:
|
| // Singleton implementation.
|
| @@ -38,7 +35,7 @@ class SyncExtensionHelper {
|
| // extension ID of the new extension.
|
| std::string InstallExtension(Profile* profile,
|
| const std::string& name,
|
| - extensions::Extension::Type type);
|
| + extensions::Manifest::Type type);
|
|
|
| // Uninstalls the extension with the given name from |profile|.
|
| void UninstallExtension(Profile* profile, const std::string& name);
|
| @@ -95,7 +92,7 @@ class SyncExtensionHelper {
|
| ExtensionNameMap;
|
| typedef std::map<Profile*, ExtensionNameMap> ProfileExtensionNameMap;
|
| typedef std::map<std::string, std::string> StringMap;
|
| - typedef std::map<std::string, extensions::Extension::Type> TypeMap;
|
| + typedef std::map<std::string, extensions::Manifest::Type> TypeMap;
|
|
|
| friend struct DefaultSingletonTraits<SyncExtensionHelper>;
|
|
|
| @@ -114,7 +111,7 @@ class SyncExtensionHelper {
|
| // have the same id.
|
| scoped_refptr<extensions::Extension> GetExtension(
|
| Profile* profile, const std::string& name,
|
| - extensions::Extension::Type type) WARN_UNUSED_RESULT;
|
| + extensions::Manifest::Type type) WARN_UNUSED_RESULT;
|
|
|
| ProfileExtensionNameMap profile_extensions_;
|
| StringMap id_to_name_;
|
|
|