OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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/public/web/WebPlugin.h" | 8 #include "third_party/WebKit/public/web/WebPlugin.h" |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "base/process_util.h" | |
13 #include "base/sequenced_task_runner_helpers.h" | 12 #include "base/sequenced_task_runner_helpers.h" |
14 #if defined(OS_WIN) | 13 #if defined(OS_WIN) |
15 #include "base/memory/shared_memory.h" | 14 #include "base/memory/shared_memory.h" |
16 #endif | 15 #endif |
17 #include "base/values.h" | 16 #include "base/values.h" |
18 #include "content/common/browser_plugin/browser_plugin_message_enums.h" | 17 #include "content/common/browser_plugin/browser_plugin_message_enums.h" |
19 #include "content/renderer/browser_plugin/browser_plugin_backing_store.h" | 18 #include "content/renderer/browser_plugin/browser_plugin_backing_store.h" |
20 #include "content/renderer/browser_plugin/browser_plugin_bindings.h" | 19 #include "content/renderer/browser_plugin/browser_plugin_bindings.h" |
21 #include "content/renderer/mouse_lock_dispatcher.h" | 20 #include "content/renderer/mouse_lock_dispatcher.h" |
22 #include "content/renderer/render_view_impl.h" | 21 #include "content/renderer/render_view_impl.h" |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 base::WeakPtrFactory<BrowserPlugin> weak_ptr_factory_; | 396 base::WeakPtrFactory<BrowserPlugin> weak_ptr_factory_; |
398 | 397 |
399 std::vector<EditCommand> edit_commands_; | 398 std::vector<EditCommand> edit_commands_; |
400 | 399 |
401 DISALLOW_COPY_AND_ASSIGN(BrowserPlugin); | 400 DISALLOW_COPY_AND_ASSIGN(BrowserPlugin); |
402 }; | 401 }; |
403 | 402 |
404 } // namespace content | 403 } // namespace content |
405 | 404 |
406 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_H_ | 405 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_H_ |
OLD | NEW |