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

Unified Diff: content/public/common/webplugininfo.h

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.cc ('k') | content/zygote/zygote_main_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « content/public/common/pepper_plugin_info.cc ('k') | content/zygote/zygote_main_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698