Revert 268405 "Make sure that ScratchBuffer::Allocate() always r..."
[chromium-blink-merge.git] / content / browser / renderer_host / popup_menu_helper_mac.h
blob8a6f3176c7e793802384a85ed348d156150cf120
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_POPUP_MENU_HELPER_MAC_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_POPUP_MENU_HELPER_MAC_H_
8 #include <vector>
10 #include "base/compiler_specific.h"
11 #include "content/common/content_export.h"
12 #include "content/public/browser/notification_observer.h"
13 #include "content/public/browser/notification_registrar.h"
14 #include "ui/gfx/rect.h"
16 #ifdef __OBJC__
17 @class WebMenuRunner;
18 #else
19 class WebMenuRunner;
20 #endif
22 namespace content {
23 class RenderViewHost;
24 class RenderViewHostImpl;
25 class RenderWidgetHostViewMac;
26 struct MenuItem;
28 class PopupMenuHelper : public NotificationObserver {
29 public:
30 // Creates a PopupMenuHelper that will notify |render_view_host| when a user
31 // selects or cancels the popup.
32 explicit PopupMenuHelper(RenderViewHost* render_view_host);
33 void Hide();
35 // Shows the popup menu and notifies the RenderViewHost of the selection/
36 // cancel.
37 // This call is blocking.
38 void ShowPopupMenu(const gfx::Rect& bounds,
39 int item_height,
40 double item_font_size,
41 int selected_item,
42 const std::vector<MenuItem>& items,
43 bool right_aligned,
44 bool allow_multiple_selection);
46 // Immediately return from ShowPopupMenu.
47 CONTENT_EXPORT static void DontShowPopupMenuForTesting();
49 protected:
50 virtual RenderWidgetHostViewMac* GetRenderWidgetHostView() const;
52 // NotificationObserver implementation:
53 virtual void Observe(int type,
54 const NotificationSource& source,
55 const NotificationDetails& details) OVERRIDE;
57 NotificationRegistrar notification_registrar_;
58 RenderViewHostImpl* render_view_host_;
59 WebMenuRunner* menu_runner_;
60 bool popup_was_hidden_;
62 DISALLOW_COPY_AND_ASSIGN(PopupMenuHelper);
65 } // namespace content
67 #endif // CONTENT_BROWSER_RENDERER_HOST_POPUP_MENU_HELPER_MAC_H_