| Index: chrome/browser/extensions/default_apps.h
|
| diff --git a/chrome/browser/extensions/default_apps.h b/chrome/browser/extensions/default_apps.h
|
| index 51f21fe72aadb1e027b850f13948af7a8906d86b..18d8f17f58ab138a66302d7c3dd5ae5918e15724 100644
|
| --- a/chrome/browser/extensions/default_apps.h
|
| +++ b/chrome/browser/extensions/default_apps.h
|
| @@ -6,7 +6,7 @@
|
| #define CHROME_BROWSER_EXTENSIONS_DEFAULT_APPS_H_
|
|
|
| #include "base/basictypes.h"
|
| -#include "chrome/browser/extensions/external_extension_provider_impl.h"
|
| +#include "chrome/browser/extensions/external_provider_impl.h"
|
|
|
| class PrefService;
|
| class Profile;
|
| @@ -31,19 +31,19 @@ enum InstallState {
|
| void RegisterUserPrefs(PrefService* prefs);
|
|
|
|
|
| -// A specialization of the ExternalExtensionProviderImpl that conditionally
|
| -// installs apps from the chrome::DIR_DEFAULT_APPS location based on a
|
| -// preference in the profile.
|
| -class Provider : public ExternalExtensionProviderImpl {
|
| +// A specialization of the ExternalProviderImpl that conditionally installs apps
|
| +// from the chrome::DIR_DEFAULT_APPS location based on a preference in the
|
| +// profile.
|
| +class Provider : public extensions::ExternalProviderImpl {
|
| public:
|
| Provider(Profile* profile,
|
| VisitorInterface* service,
|
| - ExternalExtensionLoader* loader,
|
| + extensions::ExternalLoader* loader,
|
| extensions::Extension::Location crx_location,
|
| extensions::Extension::Location download_location,
|
| int creation_flags);
|
|
|
| - // ExternalExtensionProviderImpl overrides:
|
| + // ExternalProviderImpl overrides:
|
| virtual void VisitRegisteredExtension() OVERRIDE;
|
|
|
| private:
|
| @@ -52,7 +52,6 @@ class Provider : public ExternalExtensionProviderImpl {
|
| DISALLOW_COPY_AND_ASSIGN(Provider);
|
| };
|
|
|
| -
|
| } // namespace default_apps
|
|
|
| #endif // CHROME_BROWSER_EXTENSIONS_DEFAULT_APPS_H_
|
|
|