OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_POPUP_MENU_HELPER_MAC_H_ | 5 #ifndef CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_POPUP_MENU_HELPER_MAC_H_ |
6 #define CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_POPUP_MENU_HELPER_MAC_H_ | 6 #define CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_POPUP_MENU_HELPER_MAC_H_ |
7 | 7 |
8 #include "content/browser/renderer_host/popup_menu_helper_mac.h" | 8 #include "content/browser/frame_host/popup_menu_helper_mac.h" |
9 | 9 |
10 namespace content { | 10 namespace content { |
| 11 |
11 class RenderViewHost; | 12 class RenderViewHost; |
12 class RenderViewHostImpl; | 13 class RenderViewHostImpl; |
| 14 class RenderFrameHost; |
| 15 class RenderFrameHostImpl; |
13 | 16 |
14 // This class is similiar to PopupMenuHelperMac but positions the popup relative | 17 // This class is similiar to PopupMenuHelperMac but positions the popup relative |
15 // to the embedder, and issues a reply to the guest. | 18 // to the embedder, and issues a reply to the guest. |
16 class BrowserPluginPopupMenuHelper : public PopupMenuHelper { | 19 class BrowserPluginPopupMenuHelper : public PopupMenuHelper { |
17 public: | 20 public: |
18 // Creates a BrowserPluginPopupMenuHelper that positions popups relative to | 21 // Creates a BrowserPluginPopupMenuHelper that positions popups relative to |
19 // |embedder_rvh| and will notify |guest_rvh| when a user selects or cancels | 22 // |embedder_rvh| and will notify |guest_rfh| when a user selects or cancels |
20 // the popup. | 23 // the popup. |
21 BrowserPluginPopupMenuHelper(RenderViewHost* embedder_rvh, | 24 BrowserPluginPopupMenuHelper(RenderViewHost* embedder_rvh, |
22 RenderViewHost* guest_rvh); | 25 RenderFrameHost* guest_rfh); |
23 | 26 |
24 private: | 27 private: |
25 virtual RenderWidgetHostViewMac* GetRenderWidgetHostView() const OVERRIDE; | 28 virtual RenderWidgetHostViewMac* GetRenderWidgetHostView() const OVERRIDE; |
26 | 29 |
27 RenderViewHostImpl* embedder_rvh_; | 30 RenderViewHostImpl* embedder_rvh_; |
28 | 31 |
29 DISALLOW_COPY_AND_ASSIGN(BrowserPluginPopupMenuHelper); | 32 DISALLOW_COPY_AND_ASSIGN(BrowserPluginPopupMenuHelper); |
30 }; | 33 }; |
31 | 34 |
32 } // namespace content | 35 } // namespace content |
33 | 36 |
34 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_POPUP_MENU_HELPER_MAC_H
_ | 37 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_POPUP_MENU_HELPER_MAC_H
_ |
OLD | NEW |