Chromium Code Reviews| Index: chrome/browser/policy/app_pack_updater.h |
| diff --git a/chrome/browser/policy/app_pack_updater.h b/chrome/browser/policy/app_pack_updater.h |
| index b614ff8f02d3298fd2b0fd87cd6ef8e52bdc1e16..fe7f32eae192857e7698ca516283aa0f21d8b8c8 100644 |
| --- a/chrome/browser/policy/app_pack_updater.h |
| +++ b/chrome/browser/policy/app_pack_updater.h |
| @@ -22,12 +22,12 @@ |
| #include "net/base/network_change_notifier.h" |
| class CrxInstaller; |
| -class ExternalExtensionLoader; |
| class FilePath; |
|
Joao da Silva
2012/07/16 08:08:47
Nit: "base/file_path.h" is already included
Devlin
2012/07/16 15:40:30
Done.
|
| class GURL; |
| namespace extensions { |
| class ExtensionDownloader; |
| +class ExternalLoader; |
| } |
| namespace net { |
| @@ -40,7 +40,7 @@ class Location; |
| namespace policy { |
| -class AppPackExternalExtensionLoader; |
| +class AppPackExternalLoader; |
| class BrowserPolicyConnector; |
| // The AppPackUpdater manages a set of extensions that are configured via a |
| @@ -63,10 +63,10 @@ class AppPackUpdater : public CloudPolicySubsystem::Observer, |
| BrowserPolicyConnector* connector); |
| virtual ~AppPackUpdater(); |
| - // Creates an ExternalExtensionLoader that will load the crx files downloaded |
| - // by the AppPackUpdater. This can be called at most once, and the caller |
| - // owns the returned value. |
| - ExternalExtensionLoader* CreateExternalExtensionLoader(); |
| + // Creates an extensions::ExternalLoader that will load the crx files |
| + // downloaded by the AppPackUpdater. This can be called at most once, and the |
| + // caller owns the returned value. |
| + extensions::ExternalLoader* CreateExternalLoader(); |
| // |callback| will be invoked whenever the screen saver extension's path |
| // changes. It will be invoked "soon" after this call if a valid path already |
| @@ -222,7 +222,7 @@ class AppPackUpdater : public CloudPolicySubsystem::Observer, |
| // The extension loader wires the AppPackUpdater to the extensions system, and |
| // makes it install the currently cached extensions. |
| bool created_extension_loader_; |
| - base::WeakPtr<AppPackExternalExtensionLoader> extension_loader_; |
| + base::WeakPtr<AppPackExternalLoader> extension_loader_; |
| // Used to download the extensions configured via policy, and to check for |
| // updates. |