diff options
Diffstat (limited to 'chrome/browser/ui/browser_dialogs.h')
-rw-r--r-- | chrome/browser/ui/browser_dialogs.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/ui/browser_dialogs.h b/chrome/browser/ui/browser_dialogs.h index a885730..16174fa 100644 --- a/chrome/browser/ui/browser_dialogs.h +++ b/chrome/browser/ui/browser_dialogs.h @@ -10,7 +10,6 @@ #include "ui/gfx/native_widget_types.h" class Browser; -class Extension; class Profile; class SkBitmap; class TabContentsWrapper; @@ -22,6 +21,10 @@ namespace content { class WebContents; } +namespace extensions { +class Extension; +} + namespace browser { #if defined(IPC_MESSAGE_LOG_ENABLED) @@ -54,7 +57,7 @@ void ShowCollectedCookiesDialog(gfx::NativeWindow parent_window, // the extension has loaded. |extension| is the installed extension. |browser| // is the browser window which will host the bubble. |icon| is the install // icon of the extension. -void ShowExtensionInstalledBubble(const Extension* extension, +void ShowExtensionInstalledBubble(const extensions::Extension* extension, Browser* browser, const SkBitmap& icon, Profile* profile); |