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

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

Issue 501583003: Move external popup menus from WebViewClient to WebFrameClient, part 3/3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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
diff --git a/content/browser/renderer_host/popup_menu_helper_mac.h b/content/browser/renderer_host/popup_menu_helper_mac.h
deleted file mode 100644
index 8a6f3176c7e793802384a85ed348d156150cf120..0000000000000000000000000000000000000000
--- a/content/browser/renderer_host/popup_menu_helper_mac.h
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_BROWSER_RENDERER_HOST_POPUP_MENU_HELPER_MAC_H_
-#define CONTENT_BROWSER_RENDERER_HOST_POPUP_MENU_HELPER_MAC_H_
-
-#include <vector>
-
-#include "base/compiler_specific.h"
-#include "content/common/content_export.h"
-#include "content/public/browser/notification_observer.h"
-#include "content/public/browser/notification_registrar.h"
-#include "ui/gfx/rect.h"
-
-#ifdef __OBJC__
-@class WebMenuRunner;
-#else
-class WebMenuRunner;
-#endif
-
-namespace content {
-class RenderViewHost;
-class RenderViewHostImpl;
-class RenderWidgetHostViewMac;
-struct MenuItem;
-
-class PopupMenuHelper : public NotificationObserver {
- public:
- // Creates a PopupMenuHelper that will notify |render_view_host| when a user
- // selects or cancels the popup.
- explicit PopupMenuHelper(RenderViewHost* render_view_host);
- void Hide();
-
- // Shows the popup menu and notifies the RenderViewHost of the selection/
- // cancel.
- // This call is blocking.
- void ShowPopupMenu(const gfx::Rect& bounds,
- int item_height,
- double item_font_size,
- int selected_item,
- const std::vector<MenuItem>& items,
- bool right_aligned,
- bool allow_multiple_selection);
-
- // Immediately return from ShowPopupMenu.
- CONTENT_EXPORT static void DontShowPopupMenuForTesting();
-
- protected:
- virtual RenderWidgetHostViewMac* GetRenderWidgetHostView() const;
-
- // NotificationObserver implementation:
- virtual void Observe(int type,
- const NotificationSource& source,
- const NotificationDetails& details) OVERRIDE;
-
- NotificationRegistrar notification_registrar_;
- RenderViewHostImpl* render_view_host_;
- WebMenuRunner* menu_runner_;
- bool popup_was_hidden_;
-
- DISALLOW_COPY_AND_ASSIGN(PopupMenuHelper);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_RENDERER_HOST_POPUP_MENU_HELPER_MAC_H_
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.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