summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/webstore_installer.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/webstore_installer.h')
-rw-r--r--chrome/browser/extensions/webstore_installer.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/extensions/webstore_installer.h b/chrome/browser/extensions/webstore_installer.h
index 345df9f..91656fe 100644
--- a/chrome/browser/extensions/webstore_installer.h
+++ b/chrome/browser/extensions/webstore_installer.h
@@ -16,9 +16,12 @@
#include "googleurl/src/gurl.h"
class FilePath;
-class NavigationController;
class Profile;
+namespace content {
+class NavigationController;
+}
+
// Downloads and installs extensions from the web store.
class WebstoreInstaller : public content::NotificationObserver,
public base::RefCounted<WebstoreInstaller> {
@@ -47,7 +50,7 @@ class WebstoreInstaller : public content::NotificationObserver,
// Note: the delegate should stay alive until being called back.
WebstoreInstaller(Profile* profile,
Delegate* delegate,
- NavigationController* controller,
+ content::NavigationController* controller,
const std::string& id,
int flags);
virtual ~WebstoreInstaller();
@@ -80,7 +83,7 @@ class WebstoreInstaller : public content::NotificationObserver,
content::NotificationRegistrar registrar_;
Profile* profile_;
Delegate* delegate_;
- NavigationController* controller_;
+ content::NavigationController* controller_;
std::string id_;
int flags_;
GURL download_url_;