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 CONTENT_PUBLIC_COMMON_PEPPER_PLUGIN_INFO_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_PEPPER_PLUGIN_INFO_H_ |
6 #define CONTENT_PUBLIC_COMMON_PEPPER_PLUGIN_INFO_H_ | 6 #define CONTENT_PUBLIC_COMMON_PEPPER_PLUGIN_INFO_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
13 #include "content/public/common/webplugininfo.h" | 13 #include "content/public/common/webplugininfo.h" |
14 #include "ppapi/c/pp_module.h" | 14 #include "ppapi/c/pp_module.h" |
15 #include "ppapi/c/ppb.h" | 15 #include "ppapi/c/ppb.h" |
16 | 16 |
| 17 #if !defined(ENABLE_PLUGINS) |
| 18 #error "Plugins should be enabled" |
| 19 #endif |
| 20 |
17 namespace content { | 21 namespace content { |
18 | 22 |
19 struct CONTENT_EXPORT PepperPluginInfo { | 23 struct CONTENT_EXPORT PepperPluginInfo { |
20 typedef const void* (*GetInterfaceFunc)(const char*); | 24 typedef const void* (*GetInterfaceFunc)(const char*); |
21 typedef int (*PPP_InitializeModuleFunc)(PP_Module, PPB_GetInterface); | 25 typedef int (*PPP_InitializeModuleFunc)(PP_Module, PPB_GetInterface); |
22 typedef void (*PPP_ShutdownModuleFunc)(); | 26 typedef void (*PPP_ShutdownModuleFunc)(); |
23 | 27 |
24 struct EntryPoints { | 28 struct EntryPoints { |
25 // This structure is POD, with the constructor initializing to NULL. | 29 // This structure is POD, with the constructor initializing to NULL. |
26 CONTENT_EXPORT EntryPoints(); | 30 CONTENT_EXPORT EntryPoints(); |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 // entry points for the internal plugins. | 62 // entry points for the internal plugins. |
59 EntryPoints internal_entry_points; | 63 EntryPoints internal_entry_points; |
60 | 64 |
61 // Permission bits from ppapi::Permission. | 65 // Permission bits from ppapi::Permission. |
62 uint32 permissions; | 66 uint32 permissions; |
63 }; | 67 }; |
64 | 68 |
65 } // namespace content | 69 } // namespace content |
66 | 70 |
67 #endif // CONTENT_PUBLIC_COMMON_PEPPER_PLUGIN_INFO_H_ | 71 #endif // CONTENT_PUBLIC_COMMON_PEPPER_PLUGIN_INFO_H_ |
OLD | NEW |