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

Unified Diff: content/public/common/pepper_plugin_info.cc

Issue 374773002: Remove GTalk/O1D plugins and related code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/common/pepper_plugin_info.h ('k') | content/public/common/webplugininfo.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() ?
« no previous file with comments | « content/public/common/pepper_plugin_info.h ('k') | content/public/common/webplugininfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698