Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: content/public/common/pepper_plugin_info.h

Issue 525513003: Cleanup: Put more plugin code behind the ENABLE_PLUGINS ifdef. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/public/common/BUILD.gn ('k') | content/renderer/render_thread_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/public/common/BUILD.gn ('k') | content/renderer/render_thread_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698