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_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 5 #ifndef CONTENT_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
6 #define CONTENT_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 6 #define CONTENT_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "content/child/npapi/npobject_stub.h" | 12 #include "content/child/npapi/npobject_stub.h" |
13 #include "ipc/ipc_listener.h" | 13 #include "ipc/ipc_listener.h" |
14 #include "ipc/ipc_sender.h" | 14 #include "ipc/ipc_sender.h" |
15 #include "third_party/npapi/bindings/npapi.h" | 15 #include "third_party/npapi/bindings/npapi.h" |
| 16 #include "ui/gfx/geometry/rect.h" |
16 #include "ui/gfx/native_widget_types.h" | 17 #include "ui/gfx/native_widget_types.h" |
17 #include "ui/gfx/rect.h" | |
18 #include "url/gurl.h" | 18 #include "url/gurl.h" |
19 | 19 |
20 struct PluginMsg_Init_Params; | 20 struct PluginMsg_Init_Params; |
21 struct PluginMsg_DidReceiveResponseParams; | 21 struct PluginMsg_DidReceiveResponseParams; |
22 struct PluginMsg_FetchURL_Params; | 22 struct PluginMsg_FetchURL_Params; |
23 struct PluginMsg_UpdateGeometry_Param; | 23 struct PluginMsg_UpdateGeometry_Param; |
24 | 24 |
25 namespace blink { | 25 namespace blink { |
26 class WebInputEvent; | 26 class WebInputEvent; |
27 } | 27 } |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 | 123 |
124 // The url of the main frame hosting the plugin. | 124 // The url of the main frame hosting the plugin. |
125 GURL page_url_; | 125 GURL page_url_; |
126 | 126 |
127 DISALLOW_IMPLICIT_CONSTRUCTORS(WebPluginDelegateStub); | 127 DISALLOW_IMPLICIT_CONSTRUCTORS(WebPluginDelegateStub); |
128 }; | 128 }; |
129 | 129 |
130 } // namespace content | 130 } // namespace content |
131 | 131 |
132 #endif // CONTENT_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 132 #endif // CONTENT_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
OLD | NEW |