OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010 The Native Client Authors. All rights reserved. | 2 * Copyright 2010 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can | 3 * Use of this source code is governed by a BSD-style license that can |
4 * be found in the LICENSE file. | 4 * be found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NPAPI_PLUGIN_NPAPI_H_ | 7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NPAPI_PLUGIN_NPAPI_H_ |
8 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NPAPI_PLUGIN_NPAPI_H_ | 8 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NPAPI_PLUGIN_NPAPI_H_ |
9 | 9 |
10 #include "native_client/src/include/nacl_macros.h" | 10 #include "native_client/src/include/nacl_macros.h" |
11 #include "native_client/src/include/portability.h" | 11 #include "native_client/src/include/portability.h" |
12 #include "native_client/src/trusted/plugin/npapi/npinstance.h" | 12 #include "native_client/src/trusted/plugin/npapi/npinstance.h" |
13 #include "native_client/src/trusted/plugin/srpc/plugin.h" | 13 #include "native_client/src/trusted/plugin/plugin.h" |
14 | 14 |
15 namespace nacl { | 15 namespace nacl { |
16 | 16 |
17 class NPModule; | 17 class NPModule; |
18 | 18 |
19 } // namespace | 19 } // namespace |
20 | 20 |
21 namespace plugin { | 21 namespace plugin { |
22 | 22 |
23 class MultimediaSocket; | 23 class MultimediaSocket; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 ~PluginNpapi(); | 84 ~PluginNpapi(); |
85 nacl::NPModule* module_; | 85 nacl::NPModule* module_; |
86 NPObject* nacl_instance_; | 86 NPObject* nacl_instance_; |
87 VideoMap* video_; | 87 VideoMap* video_; |
88 MultimediaSocket* multimedia_channel_; | 88 MultimediaSocket* multimedia_channel_; |
89 }; | 89 }; |
90 | 90 |
91 } // namespace plugin | 91 } // namespace plugin |
92 | 92 |
93 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NPAPI_PLUGIN_NPAPI_H_ | 93 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NPAPI_PLUGIN_NPAPI_H_ |
OLD | NEW |