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/message_loop_proxy.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/platform_file.h" | 13 #include "base/platform_file.h" |
14 #include "base/shared_memory.h" | 14 #include "base/shared_memory.h" |
15 #include "base/sync_socket.h" | 15 #include "base/sync_socket.h" |
16 #include "base/time.h" | 16 #include "base/time.h" |
17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
18 #include "media/video/capture/video_capture.h" | 18 #include "media/video/capture/video_capture.h" |
19 #include "media/video/video_decode_accelerator.h" | 19 #include "media/video/video_decode_accelerator.h" |
20 #include "ppapi/c/dev/pp_video_dev.h" | 20 #include "ppapi/c/dev/pp_video_dev.h" |
21 #include "ppapi/c/pp_completion_callback.h" | 21 #include "ppapi/c/pp_completion_callback.h" |
22 #include "ppapi/c/pp_errors.h" | 22 #include "ppapi/c/pp_errors.h" |
23 #include "ppapi/c/pp_instance.h" | 23 #include "ppapi/c/pp_instance.h" |
24 #include "ppapi/c/pp_stdint.h" | 24 #include "ppapi/c/pp_stdint.h" |
25 #include "ui/gfx/size.h" | 25 #include "ui/gfx/size.h" |
26 #include "webkit/fileapi/file_system_types.h" | 26 #include "webkit/fileapi/file_system_types.h" |
27 #include "webkit/plugins/ppapi/dir_contents.h" | 27 #include "webkit/plugins/ppapi/dir_contents.h" |
28 #include "webkit/quota/quota_types.h" | 28 #include "webkit/quota/quota_types.h" |
29 | 29 |
30 class AudioMessageFilter; | |
31 class GURL; | 30 class GURL; |
32 struct PP_NetAddress_Private; | 31 struct PP_NetAddress_Private; |
33 class SkBitmap; | 32 class SkBitmap; |
34 class Task; | |
35 class TransportDIB; | 33 class TransportDIB; |
36 | 34 |
37 namespace base { | 35 namespace base { |
38 class MessageLoopProxy; | 36 class MessageLoopProxy; |
39 class Time; | 37 class Time; |
40 } | 38 } |
41 | 39 |
42 namespace content { | |
43 class P2PSocketDispatcher; | |
44 } | |
45 | |
46 namespace fileapi { | 40 namespace fileapi { |
47 class FileSystemCallbackDispatcher; | 41 class FileSystemCallbackDispatcher; |
48 } | 42 } |
49 | 43 |
50 namespace gfx { | 44 namespace gfx { |
51 class Point; | 45 class Point; |
52 class Rect; | |
53 } | 46 } |
54 | 47 |
55 namespace gpu { | 48 namespace gpu { |
56 class CommandBuffer; | 49 class CommandBuffer; |
57 } | 50 } |
58 | 51 |
59 namespace ppapi { | 52 namespace ppapi { |
60 struct Preferences; | 53 struct Preferences; |
61 } | 54 } |
62 | 55 |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
464 virtual void DidReceiveMouseEvent(PluginInstance* instance) = 0; | 457 virtual void DidReceiveMouseEvent(PluginInstance* instance) = 0; |
465 | 458 |
466 // Determines if the browser entered fullscreen mode. | 459 // Determines if the browser entered fullscreen mode. |
467 virtual bool IsInFullscreenMode() = 0; | 460 virtual bool IsInFullscreenMode() = 0; |
468 }; | 461 }; |
469 | 462 |
470 } // namespace ppapi | 463 } // namespace ppapi |
471 } // namespace webkit | 464 } // namespace webkit |
472 | 465 |
473 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ | 466 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ |
OLD | NEW |