| Index: chrome/browser/download/download_crx_util.h
|
| diff --git a/chrome/browser/download/download_crx_util.h b/chrome/browser/download/download_crx_util.h
|
| index 59aad2c8b52ac729f3174f69469e42f2d16ef203..dc5974a97e29fb2dfa96316e30126d001870a1ec 100644
|
| --- a/chrome/browser/download/download_crx_util.h
|
| +++ b/chrome/browser/download/download_crx_util.h
|
| @@ -11,7 +11,6 @@
|
| #include "base/basictypes.h"
|
| #include "base/memory/ref_counted.h"
|
|
|
| -class CrxInstaller;
|
| class ExtensionInstallPrompt;
|
| class Profile;
|
|
|
| @@ -19,6 +18,10 @@ namespace content {
|
| class DownloadItem;
|
| }
|
|
|
| +namespace extensions {
|
| +class CrxInstaller;
|
| +}
|
| +
|
| namespace download_crx_util {
|
|
|
| // Allow tests to install a mock ExtensionInstallPrompt object, to fake
|
| @@ -32,7 +35,7 @@ void SetMockInstallPromptForTesting(ExtensionInstallPrompt* mock_prompt);
|
| // ...). The installer does work on the file thread, so the installation
|
| // is not complete when this function returns. Returns the object managing
|
| // the installation.
|
| -scoped_refptr<CrxInstaller> OpenChromeExtension(
|
| +scoped_refptr<extensions::CrxInstaller> OpenChromeExtension(
|
| Profile* profile,
|
| const content::DownloadItem& download_item);
|
|
|
|
|