| Index: content/public/common/webplugininfo.h
|
| diff --git a/content/public/common/webplugininfo.h b/content/public/common/webplugininfo.h
|
| index c84b92427d8ce44ae0ccc4bcf073668b7e99f384..b21b9ea99f9a1f82637be2f22b5e91948103d977 100644
|
| --- a/content/public/common/webplugininfo.h
|
| +++ b/content/public/common/webplugininfo.h
|
| @@ -47,7 +47,6 @@ struct CONTENT_EXPORT WebPluginInfo {
|
| PLUGIN_TYPE_NPAPI,
|
| PLUGIN_TYPE_PEPPER_IN_PROCESS,
|
| PLUGIN_TYPE_PEPPER_OUT_OF_PROCESS,
|
| - PLUGIN_TYPE_PEPPER_UNSANDBOXED,
|
| PLUGIN_TYPE_BROWSER_PLUGIN
|
| };
|
|
|
| @@ -64,8 +63,7 @@ struct CONTENT_EXPORT WebPluginInfo {
|
|
|
| bool is_pepper_plugin() const {
|
| return ((type == PLUGIN_TYPE_PEPPER_IN_PROCESS ) ||
|
| - (type == PLUGIN_TYPE_PEPPER_OUT_OF_PROCESS) ||
|
| - (type == PLUGIN_TYPE_PEPPER_UNSANDBOXED));
|
| + (type == PLUGIN_TYPE_PEPPER_OUT_OF_PROCESS));
|
| }
|
|
|
| // Parse a version string as used by a plugin. This method is more lenient
|
|
|