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 WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ |
6 #define WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/message_loop_proxy.h" |
11 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
12 #include "base/platform_file.h" | 13 #include "base/platform_file.h" |
13 #include "base/shared_memory.h" | 14 #include "base/shared_memory.h" |
14 #include "base/sync_socket.h" | 15 #include "base/sync_socket.h" |
15 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
16 #include "media/video/video_decode_accelerator.h" | 17 #include "media/video/video_decode_accelerator.h" |
17 #include "ppapi/c/pp_completion_callback.h" | 18 #include "ppapi/c/pp_completion_callback.h" |
18 #include "ppapi/c/pp_errors.h" | 19 #include "ppapi/c/pp_errors.h" |
19 #include "ppapi/c/pp_instance.h" | 20 #include "ppapi/c/pp_instance.h" |
20 #include "ppapi/c/pp_stdint.h" | 21 #include "ppapi/c/pp_stdint.h" |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 virtual P2PSocketDispatcher* GetP2PSocketDispatcher() = 0; | 380 virtual P2PSocketDispatcher* GetP2PSocketDispatcher() = 0; |
380 | 381 |
381 // Creates P2PTransport object. | 382 // Creates P2PTransport object. |
382 virtual webkit_glue::P2PTransport* CreateP2PTransport() = 0; | 383 virtual webkit_glue::P2PTransport* CreateP2PTransport() = 0; |
383 }; | 384 }; |
384 | 385 |
385 } // namespace ppapi | 386 } // namespace ppapi |
386 } // namespace webkit | 387 } // namespace webkit |
387 | 388 |
388 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ | 389 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ |
OLD | NEW |