| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 5 #ifndef CONTENT_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
| 6 #define CONTENT_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 6 #define CONTENT_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/task.h" | |
| 14 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
| 15 #include "ipc/ipc_channel.h" | 14 #include "ipc/ipc_channel.h" |
| 16 #include "third_party/npapi/bindings/npapi.h" | 15 #include "third_party/npapi/bindings/npapi.h" |
| 17 #include "ui/gfx/native_widget_types.h" | 16 #include "ui/gfx/native_widget_types.h" |
| 18 #include "ui/gfx/rect.h" | 17 #include "ui/gfx/rect.h" |
| 19 | 18 |
| 20 class PluginChannel; | 19 class PluginChannel; |
| 21 class WebPluginProxy; | 20 class WebPluginProxy; |
| 22 struct PluginMsg_Init_Params; | 21 struct PluginMsg_Init_Params; |
| 23 struct PluginMsg_DidReceiveResponseParams; | 22 struct PluginMsg_DidReceiveResponseParams; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 // window handle which is used for subsequent communication back to the | 126 // window handle which is used for subsequent communication back to the |
| 128 // browser. | 127 // browser. |
| 129 void OnSetFakeAcceleratedSurfaceWindowHandle(gfx::PluginWindowHandle window); | 128 void OnSetFakeAcceleratedSurfaceWindowHandle(gfx::PluginWindowHandle window); |
| 130 #endif | 129 #endif |
| 131 #endif | 130 #endif |
| 132 | 131 |
| 133 DISALLOW_IMPLICIT_CONSTRUCTORS(WebPluginDelegateStub); | 132 DISALLOW_IMPLICIT_CONSTRUCTORS(WebPluginDelegateStub); |
| 134 }; | 133 }; |
| 135 | 134 |
| 136 #endif // CONTENT_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 135 #endif // CONTENT_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
| OLD | NEW |