| 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; |
| 38 class ResourceMessageReplyParams; | 41 class ResourceMessageReplyParams; |
| 39 | 42 |
| 40 // Used to keep track of per-instance data. | 43 // Used to keep track of per-instance data. |
| 41 struct InstanceData { | 44 struct InstanceData { |
| 42 InstanceData(); | 45 InstanceData(); |
| 43 ~InstanceData(); | 46 ~InstanceData(); |
| 44 | 47 |
| 45 ViewData view; | 48 ViewData view; |
| 46 | 49 |
| 47 // When non-NULL, indicates the callback to execute when mouse lock is lost. | 50 // 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... |
| 206 // incognito mode. | 209 // incognito mode. |
| 207 bool incognito_; | 210 bool incognito_; |
| 208 | 211 |
| 209 DISALLOW_COPY_AND_ASSIGN(PluginDispatcher); | 212 DISALLOW_COPY_AND_ASSIGN(PluginDispatcher); |
| 210 }; | 213 }; |
| 211 | 214 |
| 212 } // namespace proxy | 215 } // namespace proxy |
| 213 } // namespace ppapi | 216 } // namespace ppapi |
| 214 | 217 |
| 215 #endif // PPAPI_PROXY_PLUGIN_DISPATCHER_H_ | 218 #endif // PPAPI_PROXY_PLUGIN_DISPATCHER_H_ |
| OLD | NEW |