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

Unified Diff: chrome/browser/ui/gtk/extensions/extension_popup_gtk.h

Issue 10824030: Move ExtensionHost into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Latest master for cq Created 8 years, 5 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/ui/gtk/extensions/extension_popup_gtk.h
diff --git a/chrome/browser/ui/gtk/extensions/extension_popup_gtk.h b/chrome/browser/ui/gtk/extensions/extension_popup_gtk.h
index f6d05d16e69d2da201945630c5d68f9e87772ce0..ef1e74c39f9c68162606a365f2e0b2f145e8de0c 100644
--- a/chrome/browser/ui/gtk/extensions/extension_popup_gtk.h
+++ b/chrome/browser/ui/gtk/extensions/extension_popup_gtk.h
@@ -15,9 +15,12 @@
#include "ui/gfx/rect.h"
class Browser;
-class ExtensionHost;
class GURL;
+namespace extensions {
+class ExtensionHost;
+}
+
class ExtensionPopupGtk : public content::NotificationObserver,
public BubbleDelegateGtk,
public ExtensionViewGtk::Container {
@@ -68,7 +71,7 @@ class ExtensionPopupGtk : public content::NotificationObserver,
private:
ExtensionPopupGtk(Browser* browser,
- ExtensionHost* host,
+ extensions::ExtensionHost* host,
GtkWidget* anchor,
ShowAction show_action);
virtual ~ExtensionPopupGtk();
@@ -86,7 +89,7 @@ class ExtensionPopupGtk : public content::NotificationObserver,
BubbleGtk* bubble_;
// We take ownership of the popup ExtensionHost.
- scoped_ptr<ExtensionHost> host_;
+ scoped_ptr<extensions::ExtensionHost> host_;
// The widget for anchoring the position of the bubble.
GtkWidget* anchor_;

Powered by Google App Engine
This is Rietveld 408576698