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_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_H_ | 5 #ifndef CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_H_ |
6 #define CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_H_ | 6 #define CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_H_ |
7 | 7 |
8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPlugin.h" | 8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPlugin.h" |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/sequenced_task_runner_helpers.h" | 11 #include "base/sequenced_task_runner_helpers.h" |
| 12 #if defined(OS_WIN) |
| 13 #include "base/shared_memory.h" |
| 14 #endif |
12 #include "content/renderer/browser_plugin/browser_plugin_backing_store.h" | 15 #include "content/renderer/browser_plugin/browser_plugin_backing_store.h" |
13 #include "content/renderer/browser_plugin/browser_plugin_bindings.h" | 16 #include "content/renderer/browser_plugin/browser_plugin_bindings.h" |
14 #include "content/renderer/render_view_impl.h" | 17 #include "content/renderer/render_view_impl.h" |
15 | 18 |
16 struct BrowserPluginMsg_UpdateRect_Params; | 19 struct BrowserPluginMsg_UpdateRect_Params; |
17 | 20 |
18 namespace content { | 21 namespace content { |
19 | 22 |
20 class BrowserPluginManager; | 23 class BrowserPluginManager; |
21 class MockBrowserPlugin; | 24 class MockBrowserPlugin; |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 RenderViewImpl* render_view_; | 132 RenderViewImpl* render_view_; |
130 WebKit::WebPluginContainer* container_; | 133 WebKit::WebPluginContainer* container_; |
131 scoped_ptr<BrowserPluginBindings> bindings_; | 134 scoped_ptr<BrowserPluginBindings> bindings_; |
132 scoped_ptr<BrowserPluginBackingStore> backing_store_; | 135 scoped_ptr<BrowserPluginBackingStore> backing_store_; |
133 TransportDIB* damage_buffer_; | 136 TransportDIB* damage_buffer_; |
134 gfx::Rect plugin_rect_; | 137 gfx::Rect plugin_rect_; |
135 // Bitmap for crashed plugin. Lazily initialized, non-owning pointer. | 138 // Bitmap for crashed plugin. Lazily initialized, non-owning pointer. |
136 SkBitmap* sad_guest_; | 139 SkBitmap* sad_guest_; |
137 bool guest_crashed_; | 140 bool guest_crashed_; |
138 bool resize_pending_; | 141 bool resize_pending_; |
139 long long parent_frame_; | 142 // True if we have ever sent a NavigateGuest message to the embedder. |
| 143 bool navigate_src_sent_; |
| 144 int64 parent_frame_; |
140 std::string src_; | 145 std::string src_; |
141 typedef std::vector<v8::Persistent<v8::Function> > EventListeners; | 146 typedef std::vector<v8::Persistent<v8::Function> > EventListeners; |
142 typedef std::map<std::string, EventListeners> EventListenerMap; | 147 typedef std::map<std::string, EventListeners> EventListenerMap; |
143 EventListenerMap event_listener_map_; | 148 EventListenerMap event_listener_map_; |
| 149 #if defined(OS_WIN) |
| 150 base::SharedMemory shared_memory_; |
| 151 #endif |
144 DISALLOW_COPY_AND_ASSIGN(BrowserPlugin); | 152 DISALLOW_COPY_AND_ASSIGN(BrowserPlugin); |
145 }; | 153 }; |
146 | 154 |
147 } // namespace content | 155 } // namespace content |
148 | 156 |
149 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_H_ | 157 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_H_ |
OLD | NEW |