OLD | NEW |
1 // Copyright (c) 2010 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 CONTENT_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
6 #define CHROME_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/ref_counted.h" | 12 #include "base/ref_counted.h" |
13 #include "base/shared_memory.h" | 13 #include "base/shared_memory.h" |
14 #include "base/task.h" | 14 #include "base/task.h" |
15 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
16 #include "ipc/ipc_channel.h" | 16 #include "ipc/ipc_channel.h" |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 // If this is a GPU-accelerated plug-in, we need to be able to receive a fake | 125 // If this is a GPU-accelerated plug-in, we need to be able to receive a fake |
126 // window handle which is used for subsequent communication back to the | 126 // window handle which is used for subsequent communication back to the |
127 // browser. | 127 // browser. |
128 void OnSetFakeAcceleratedSurfaceWindowHandle(gfx::PluginWindowHandle window); | 128 void OnSetFakeAcceleratedSurfaceWindowHandle(gfx::PluginWindowHandle window); |
129 #endif | 129 #endif |
130 #endif | 130 #endif |
131 | 131 |
132 DISALLOW_IMPLICIT_CONSTRUCTORS(WebPluginDelegateStub); | 132 DISALLOW_IMPLICIT_CONSTRUCTORS(WebPluginDelegateStub); |
133 }; | 133 }; |
134 | 134 |
135 #endif // CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 135 #endif // CONTENT_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
OLD | NEW |