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

Unified Diff: chrome/browser/extensions/webstore_installer.h

Issue 8983010: Convert WebContents to return a content::NavigationController instead of the implementation. Upda... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 12 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
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_;

Powered by Google App Engine
This is Rietveld 408576698