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

Unified Diff: chrome/browser/ui/cocoa/extensions/extension_popup_controller.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/cocoa/extensions/extension_popup_controller.h
diff --git a/chrome/browser/ui/cocoa/extensions/extension_popup_controller.h b/chrome/browser/ui/cocoa/extensions/extension_popup_controller.h
index 06a4d23a7dc189b79383083eb63cb5e818dc96e2..782505d382a9e26b356f8e9a72f75b556cc04754 100644
--- a/chrome/browser/ui/cocoa/extensions/extension_popup_controller.h
+++ b/chrome/browser/ui/cocoa/extensions/extension_popup_controller.h
@@ -16,13 +16,16 @@
class Browser;
class DevtoolsNotificationBridge;
-class ExtensionHost;
class ExtensionPopupContainer;
namespace content {
class NotificationRegistrar;
}
+namespace extensions {
+class ExtensionHost;
+}
+
// This controller manages a single browser action popup that can appear once a
// user has clicked on a browser action button. It instantiates the extension
// popup view showing the content and resizes the window to accomodate any size
@@ -40,7 +43,7 @@ class NotificationRegistrar;
NSRect extensionFrame_;
// The extension host object.
- scoped_ptr<ExtensionHost> host_;
+ scoped_ptr<extensions::ExtensionHost> host_;
scoped_ptr<content::NotificationRegistrar> registrar_;
scoped_ptr<DevtoolsNotificationBridge> notificationBridge_;
@@ -54,7 +57,7 @@ class NotificationRegistrar;
}
// Returns the ExtensionHost object associated with this popup.
-- (ExtensionHost*)extensionHost;
+- (extensions::ExtensionHost*)extensionHost;
// Starts the process of showing the given popup URL. Instantiates an
// ExtensionPopupController with the parent window retrieved from |browser|, a

Powered by Google App Engine
This is Rietveld 408576698