| Index: content/public/common/pepper_plugin_info.cc
|
| diff --git a/content/public/common/pepper_plugin_info.cc b/content/public/common/pepper_plugin_info.cc
|
| index d627a4becb0f68136b0c12c26ad375c13d684569..018bf183103bab75d393f7984f2050aa058d67f0 100644
|
| --- a/content/public/common/pepper_plugin_info.cc
|
| +++ b/content/public/common/pepper_plugin_info.cc
|
| @@ -17,7 +17,6 @@ PepperPluginInfo::EntryPoints::EntryPoints()
|
| PepperPluginInfo::PepperPluginInfo()
|
| : is_internal(false),
|
| is_out_of_process(false),
|
| - is_sandboxed(true),
|
| permissions(0) {
|
| }
|
|
|
| @@ -28,9 +27,7 @@ WebPluginInfo PepperPluginInfo::ToWebPluginInfo() const {
|
| WebPluginInfo info;
|
|
|
| info.type = is_out_of_process ?
|
| - (is_sandboxed ?
|
| - WebPluginInfo::PLUGIN_TYPE_PEPPER_OUT_OF_PROCESS :
|
| - WebPluginInfo::PLUGIN_TYPE_PEPPER_UNSANDBOXED) :
|
| + WebPluginInfo::PLUGIN_TYPE_PEPPER_OUT_OF_PROCESS :
|
| WebPluginInfo::PLUGIN_TYPE_PEPPER_IN_PROCESS;
|
|
|
| info.name = name.empty() ?
|
|
|