OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 5 #ifndef CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
6 #define CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 6 #define CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
7 | 7 |
8 #include <queue> | 8 #include <queue> |
| 9 #include <string> |
| 10 #include <vector> |
9 | 11 |
10 #include "base/gfx/rect.h" | 12 #include "base/gfx/rect.h" |
11 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
12 #include "base/shared_memory.h" | 14 #include "base/shared_memory.h" |
13 #include "base/task.h" | 15 #include "base/task.h" |
14 #include "chrome/common/transport_dib.h" | 16 #include "chrome/common/transport_dib.h" |
15 #include "chrome/plugin/command_buffer_stub.h" | 17 #include "chrome/plugin/command_buffer_stub.h" |
16 #include "googleurl/src/gurl.h" | 18 #include "googleurl/src/gurl.h" |
17 #include "ipc/ipc_channel.h" | 19 #include "ipc/ipc_channel.h" |
18 #include "third_party/npapi/bindings/npapi.h" | 20 #include "third_party/npapi/bindings/npapi.h" |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 #if defined(ENABLE_GPU) | 117 #if defined(ENABLE_GPU) |
116 // If this is the GPU plugin, the stub object that forwards to the | 118 // If this is the GPU plugin, the stub object that forwards to the |
117 // command buffer service. | 119 // command buffer service. |
118 scoped_ptr<CommandBufferStub> command_buffer_stub_; | 120 scoped_ptr<CommandBufferStub> command_buffer_stub_; |
119 #endif | 121 #endif |
120 | 122 |
121 DISALLOW_IMPLICIT_CONSTRUCTORS(WebPluginDelegateStub); | 123 DISALLOW_IMPLICIT_CONSTRUCTORS(WebPluginDelegateStub); |
122 }; | 124 }; |
123 | 125 |
124 #endif // CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 126 #endif // CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
OLD | NEW |