| 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 <set> | |
| 9 #include <string> | 8 #include <string> |
| 10 | 9 |
| 11 #include "base/gfx/rect.h" | 10 #include "base/gfx/rect.h" |
| 12 #include "base/gfx/native_widget_types.h" | 11 #include "base/gfx/native_widget_types.h" |
| 13 #include "base/ref_counted.h" | 12 #include "base/ref_counted.h" |
| 14 #include "base/scoped_handle.h" | |
| 15 #include "chrome/common/ipc_message.h" | 13 #include "chrome/common/ipc_message.h" |
| 16 #include "chrome/plugin/npobject_stub.h" | |
| 17 #include "chrome/renderer/plugin_channel_host.h" | 14 #include "chrome/renderer/plugin_channel_host.h" |
| 18 #include "webkit/glue/webplugin.h" | 15 #include "webkit/glue/webplugin.h" |
| 19 #include "webkit/glue/webplugin_delegate.h" | 16 #include "webkit/glue/webplugin_delegate.h" |
| 20 | 17 |
| 21 class GURL; | 18 class GURL; |
| 19 struct NPObject; |
| 20 class NPObjectStub; |
| 22 struct PluginHostMsg_URLRequest_Params; | 21 struct PluginHostMsg_URLRequest_Params; |
| 23 class RenderView; | 22 class RenderView; |
| 24 class SkBitmap; | 23 class SkBitmap; |
| 25 | 24 |
| 26 namespace base { | 25 namespace base { |
| 27 class SharedMemory; | 26 class SharedMemory; |
| 28 class WaitableEvent; | 27 class WaitableEvent; |
| 29 } | 28 } |
| 30 | 29 |
| 31 namespace skia { | 30 namespace skia { |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 scoped_ptr<skia::PlatformCanvasWin> transport_store_canvas_; | 189 scoped_ptr<skia::PlatformCanvasWin> transport_store_canvas_; |
| 191 scoped_ptr<base::SharedMemory> background_store_; | 190 scoped_ptr<base::SharedMemory> background_store_; |
| 192 scoped_ptr<skia::PlatformCanvasWin> background_store_canvas_; | 191 scoped_ptr<skia::PlatformCanvasWin> background_store_canvas_; |
| 193 // This lets us know which portion of the backing store has been painted into. | 192 // This lets us know which portion of the backing store has been painted into. |
| 194 gfx::Rect backing_store_painted_; | 193 gfx::Rect backing_store_painted_; |
| 195 | 194 |
| 196 DISALLOW_EVIL_CONSTRUCTORS(WebPluginDelegateProxy); | 195 DISALLOW_EVIL_CONSTRUCTORS(WebPluginDelegateProxy); |
| 197 }; | 196 }; |
| 198 | 197 |
| 199 #endif // CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H_ | 198 #endif // CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H_ |
| OLD | NEW |