OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H__ | 5 #ifndef CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H__ |
6 #define CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H__ | 6 #define CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H__ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "base/gfx/rect.h" | 12 #include "base/gfx/rect.h" |
13 #include "base/gfx/native_widget_types.h" | 13 #include "base/gfx/native_widget_types.h" |
14 #include "base/ref_counted.h" | 14 #include "base/ref_counted.h" |
15 #include "chrome/common/ipc_message.h" | |
16 #include "chrome/common/transport_dib.h" | 15 #include "chrome/common/transport_dib.h" |
17 #include "chrome/renderer/plugin_channel_host.h" | 16 #include "chrome/renderer/plugin_channel_host.h" |
18 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
| 18 #include "ipc/ipc_message.h" |
19 #include "skia/ext/platform_canvas.h" | 19 #include "skia/ext/platform_canvas.h" |
20 #include "webkit/glue/webplugin.h" | 20 #include "webkit/glue/webplugin.h" |
21 #include "webkit/glue/webplugin_delegate.h" | 21 #include "webkit/glue/webplugin_delegate.h" |
22 | 22 |
23 struct NPObject; | 23 struct NPObject; |
24 class NPObjectStub; | 24 class NPObjectStub; |
25 struct NPVariant_Param; | 25 struct NPVariant_Param; |
26 struct PluginHostMsg_URLRequest_Params; | 26 struct PluginHostMsg_URLRequest_Params; |
27 class RenderView; | 27 class RenderView; |
28 class SkBitmap; | 28 class SkBitmap; |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 // This lets us know which portion of the backing store has been painted into. | 201 // This lets us know which portion of the backing store has been painted into. |
202 gfx::Rect backing_store_painted_; | 202 gfx::Rect backing_store_painted_; |
203 | 203 |
204 // The url of the main frame hosting the plugin. | 204 // The url of the main frame hosting the plugin. |
205 GURL page_url_; | 205 GURL page_url_; |
206 | 206 |
207 DISALLOW_EVIL_CONSTRUCTORS(WebPluginDelegateProxy); | 207 DISALLOW_EVIL_CONSTRUCTORS(WebPluginDelegateProxy); |
208 }; | 208 }; |
209 | 209 |
210 #endif // CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H_ | 210 #endif // CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H_ |
OLD | NEW |