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_GUEST_HELPER_H_ | 5 #ifndef CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_GUEST_HELPER_H_ |
6 #define CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_GUEST_HELPER_H_ | 6 #define CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_GUEST_HELPER_H_ |
7 | 7 |
8 #include "content/port/common/input_event_ack_state.h" | |
9 #include "content/public/browser/render_view_host_observer.h" | 8 #include "content/public/browser/render_view_host_observer.h" |
10 #include "content/public/browser/notification_registrar.h" | 9 #include "content/public/browser/notification_registrar.h" |
| 10 #include "content/public/common/input_event_ack_state.h" |
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragOperation.h" | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragOperation.h" |
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
13 | 13 |
14 class WebCursor; | 14 class WebCursor; |
15 #if defined(OS_MACOSX) | 15 #if defined(OS_MACOSX) |
16 struct ViewHostMsg_ShowPopup_Params; | 16 struct ViewHostMsg_ShowPopup_Params; |
17 #endif | 17 #endif |
18 struct ViewHostMsg_UpdateRect_Params; | 18 struct ViewHostMsg_UpdateRect_Params; |
19 | 19 |
20 namespace gfx { | 20 namespace gfx { |
(...skipping 29 matching lines...) Expand all Loading... |
50 static bool ShouldForwardToBrowserPluginGuest(const IPC::Message& message); | 50 static bool ShouldForwardToBrowserPluginGuest(const IPC::Message& message); |
51 | 51 |
52 BrowserPluginGuest* guest_; | 52 BrowserPluginGuest* guest_; |
53 | 53 |
54 DISALLOW_COPY_AND_ASSIGN(BrowserPluginGuestHelper); | 54 DISALLOW_COPY_AND_ASSIGN(BrowserPluginGuestHelper); |
55 }; | 55 }; |
56 | 56 |
57 } // namespace content | 57 } // namespace content |
58 | 58 |
59 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_GUEST_HELPER_H_ | 59 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_GUEST_HELPER_H_ |
OLD | NEW |