#ifndef CONTENT_PUBLIC_COMMON_CONTENT_PLUGIN_INFO_H_
#define CONTENT_PUBLIC_COMMON_CONTENT_PLUGIN_INFO_H_
#include <stdint.h>
#include <string>
#include <vector>
#include "base/files/file_path.h"
#include "content/common/content_export.h"
#include "content/public/common/webplugininfo.h"
#include "ppapi/buildflags/buildflags.h"
#if !BUILDFLAG(ENABLE_PLUGINS)
#error "Plugins should be enabled"
#endif
#if BUILDFLAG(ENABLE_PPAPI)
#include "ppapi/c/pp_module.h"
#include "ppapi/c/ppb.h"
#endif
namespace content {
struct CONTENT_EXPORT ContentPluginInfo { … };
}
#endif