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

Unified Diff: chrome/browser/ui/browser.h

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 6 Created 8 years, 7 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/ui/app_modal_dialogs/message_box_handler.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser.h
diff --git a/chrome/browser/ui/browser.h b/chrome/browser/ui/browser.h
index 5dc3dcea8a0340db3c82ca9ecc4df66aa56707b5..048de2163a848a37af6732fdf5788e2b4a4a8d58 100644
--- a/chrome/browser/ui/browser.h
+++ b/chrome/browser/ui/browser.h
@@ -56,7 +56,6 @@ class BrowserSyncedWindowDelegate;
class BrowserToolbarModelDelegate;
class BrowserTabRestoreServiceDelegate;
class BrowserWindow;
-class Extension;
class ExtensionWindowController;
class FindBarController;
class FullscreenController;
@@ -76,6 +75,10 @@ class NavigationController;
class SessionStorageNamespace;
}
+namespace extensions {
+class Extension;
+}
+
namespace gfx {
class Point;
}
@@ -290,7 +293,7 @@ class Browser : public TabStripModelDelegate,
// |override_url| is used in place of the app launch url.
static content::WebContents* OpenApplication(
Profile* profile,
- const Extension* extension,
+ const extensions::Extension* extension,
extension_misc::LaunchContainer container,
const GURL& override_url,
WindowOpenDisposition disposition);
@@ -299,7 +302,7 @@ class Browser : public TabStripModelDelegate,
// Opens |url| in a new application panel window for the specified url.
static content::WebContents* OpenApplicationPanel(
Profile* profile,
- const Extension* extension,
+ const extensions::Extension* extension,
const GURL& url);
#endif
@@ -312,7 +315,7 @@ class Browser : public TabStripModelDelegate,
// returned tab.
static content::WebContents* OpenApplicationWindow(
Profile* profile,
- const Extension* extension,
+ const extensions::Extension* extension,
extension_misc::LaunchContainer container,
const GURL& url,
Browser** app_browser);
@@ -332,7 +335,7 @@ class Browser : public TabStripModelDelegate,
// non-empty, |override_url| is used in place of the app launch url.
static content::WebContents* OpenApplicationTab(
Profile* profile,
- const Extension* extension,
+ const extensions::Extension* extension,
const GURL& override_url,
WindowOpenDisposition disposition);
« no previous file with comments | « chrome/browser/ui/app_modal_dialogs/message_box_handler.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698