| Index: chrome/browser/extensions/webstore_installer.h
|
| ===================================================================
|
| --- chrome/browser/extensions/webstore_installer.h (revision 116232)
|
| +++ chrome/browser/extensions/webstore_installer.h (working copy)
|
| @@ -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 @@
|
| // 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 @@
|
| content::NotificationRegistrar registrar_;
|
| Profile* profile_;
|
| Delegate* delegate_;
|
| - NavigationController* controller_;
|
| + content::NavigationController* controller_;
|
| std::string id_;
|
| int flags_;
|
| GURL download_url_;
|
|
|