summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/extension_installed_bubble_gtk.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/gtk/extension_installed_bubble_gtk.h')
-rw-r--r--chrome/browser/gtk/extension_installed_bubble_gtk.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/gtk/extension_installed_bubble_gtk.h b/chrome/browser/gtk/extension_installed_bubble_gtk.h
index 9b8483c..08d6fec 100644
--- a/chrome/browser/gtk/extension_installed_bubble_gtk.h
+++ b/chrome/browser/gtk/extension_installed_bubble_gtk.h
@@ -45,13 +45,13 @@ class ExtensionInstalledBubbleGtk
// 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.
- static void Show(Extension *extension, Browser *browser, SkBitmap icon);
+ static void Show(const Extension* extension, Browser *browser, SkBitmap icon);
private:
friend class base::RefCountedThreadSafe<ExtensionInstalledBubbleGtk>;
// Private ctor. Registers a listener for EXTENSION_LOADED.
- ExtensionInstalledBubbleGtk(Extension *extension, Browser *browser,
+ ExtensionInstalledBubbleGtk(const Extension* extension, Browser *browser,
SkBitmap icon);
virtual ~ExtensionInstalledBubbleGtk();
@@ -74,7 +74,7 @@ class ExtensionInstalledBubbleGtk
static void OnButtonClick(GtkWidget* button,
ExtensionInstalledBubbleGtk* toolbar);
- Extension *extension_;
+ const Extension* extension_;
Browser *browser_;
SkBitmap icon_;
NotificationRegistrar registrar_;