OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 PPAPI_PROXY_PLUGIN_DISPATCHER_H_ | 5 #ifndef PPAPI_PROXY_PLUGIN_DISPATCHER_H_ |
6 #define PPAPI_PROXY_PLUGIN_DISPATCHER_H_ | 6 #define PPAPI_PROXY_PLUGIN_DISPATCHER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... |
28 struct Preferences; | 28 struct Preferences; |
29 class Resource; | 29 class Resource; |
30 | 30 |
31 namespace thunk { | 31 namespace thunk { |
32 class PPB_Instance_API; | 32 class PPB_Instance_API; |
33 class ResourceCreationAPI; | 33 class ResourceCreationAPI; |
34 } | 34 } |
35 | 35 |
36 namespace proxy { | 36 namespace proxy { |
37 | 37 |
38 class FlashClipboardResource; | |
39 class FlashResource; | |
40 class GamepadResource; | |
41 class ResourceMessageReplyParams; | 38 class ResourceMessageReplyParams; |
42 | 39 |
43 // Used to keep track of per-instance data. | 40 // Used to keep track of per-instance data. |
44 struct InstanceData { | 41 struct InstanceData { |
45 InstanceData(); | 42 InstanceData(); |
46 ~InstanceData(); | 43 ~InstanceData(); |
47 | 44 |
48 ViewData view; | 45 ViewData view; |
49 | 46 |
50 // When non-NULL, indicates the callback to execute when mouse lock is lost. | 47 // When non-NULL, indicates the callback to execute when mouse lock is lost. |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 // incognito mode. | 206 // incognito mode. |
210 bool incognito_; | 207 bool incognito_; |
211 | 208 |
212 DISALLOW_COPY_AND_ASSIGN(PluginDispatcher); | 209 DISALLOW_COPY_AND_ASSIGN(PluginDispatcher); |
213 }; | 210 }; |
214 | 211 |
215 } // namespace proxy | 212 } // namespace proxy |
216 } // namespace ppapi | 213 } // namespace ppapi |
217 | 214 |
218 #endif // PPAPI_PROXY_PLUGIN_DISPATCHER_H_ | 215 #endif // PPAPI_PROXY_PLUGIN_DISPATCHER_H_ |
OLD | NEW |