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

Unified Diff: content/browser/renderer_host/popup_menu_helper_mac.h

Issue 10804031: Move more files into the content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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: content/browser/renderer_host/popup_menu_helper_mac.h
===================================================================
--- content/browser/renderer_host/popup_menu_helper_mac.h (revision 147462)
+++ content/browser/renderer_host/popup_menu_helper_mac.h (working copy)
@@ -17,13 +17,12 @@
namespace content {
class RenderViewHost;
class RenderViewHostImpl;
-}
-class PopupMenuHelper : public content::NotificationObserver {
+class PopupMenuHelper : public NotificationObserver {
public:
// Creates a PopupMenuHelper that will notify |render_view_host| when a user
// selects or cancels the popup.
- explicit PopupMenuHelper(content::RenderViewHost* render_view_host);
+ explicit PopupMenuHelper(RenderViewHost* render_view_host);
// Shows the popup menu and notifies the RenderViewHost of the selection/
// cancel.
@@ -37,16 +36,18 @@
bool allow_multiple_selection);
private:
- // content::NotificationObserver implementation:
+ // NotificationObserver implementation:
virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const NotificationSource& source,
+ const NotificationDetails& details) OVERRIDE;
- content::NotificationRegistrar notification_registrar_;
+ NotificationRegistrar notification_registrar_;
- content::RenderViewHostImpl* render_view_host_;
+ RenderViewHostImpl* render_view_host_;
DISALLOW_COPY_AND_ASSIGN(PopupMenuHelper);
};
+} // namespace content
+
#endif // CONTENT_BROWSER_RENDERER_HOST_POPUP_MENU_HELPER_MAC_H_
« no previous file with comments | « content/browser/renderer_host/gtk_im_context_wrapper.cc ('k') | content/browser/renderer_host/popup_menu_helper_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698