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

Unified Diff: chrome/browser/download/download_crx_util.h

Issue 10683003: Moved CrxInstaller and CrxInstallerError into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Latest-er master Created 8 years, 5 months 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
« no previous file with comments | « chrome/browser/download/download_browsertest.cc ('k') | chrome/browser/download/download_crx_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « chrome/browser/download/download_browsertest.cc ('k') | chrome/browser/download/download_crx_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698