| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <queue> | |
| 10 #include <string> | 9 #include <string> |
| 11 #include <vector> | 10 #include <vector> |
| 12 | 11 |
| 13 #include "base/ref_counted.h" | 12 #include "base/ref_counted.h" |
| 14 #include "base/shared_memory.h" | 13 #include "base/shared_memory.h" |
| 15 #include "base/task.h" | 14 #include "base/task.h" |
| 16 #include "chrome/plugin/command_buffer_stub.h" | 15 #include "chrome/plugin/command_buffer_stub.h" |
| 17 #include "gfx/rect.h" | 16 #include "gfx/rect.h" |
| 18 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
| 19 #include "ipc/ipc_channel.h" | 18 #include "ipc/ipc_channel.h" |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 // browser. | 128 // browser. |
| 130 void OnSetFakeAcceleratedSurfaceWindowHandle(gfx::PluginWindowHandle window); | 129 void OnSetFakeAcceleratedSurfaceWindowHandle(gfx::PluginWindowHandle window); |
| 131 #endif | 130 #endif |
| 132 | 131 |
| 133 #endif | 132 #endif |
| 134 | 133 |
| 135 DISALLOW_IMPLICIT_CONSTRUCTORS(WebPluginDelegateStub); | 134 DISALLOW_IMPLICIT_CONSTRUCTORS(WebPluginDelegateStub); |
| 136 }; | 135 }; |
| 137 | 136 |
| 138 #endif // CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 137 #endif // CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
| OLD | NEW |