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

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

Issue 1867833003: Prefer System Flash over non-local component updated Flash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix mac Created 4 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 | « chrome/common/pepper_flash.cc ('k') | content/public/common/pepper_plugin_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/pepper_plugin_info.h
diff --git a/content/public/common/pepper_plugin_info.h b/content/public/common/pepper_plugin_info.h
index 34dc4861671e1c52486de3812a38496976bcff07..e7170026f98b136bddd21f9e5e52c7b257b1f695 100644
--- a/content/public/common/pepper_plugin_info.h
+++ b/content/public/common/pepper_plugin_info.h
@@ -61,6 +61,20 @@ struct CONTENT_EXPORT PepperPluginInfo {
// Defaults to false.
bool is_debug;
+ // True when the plugin is on a local drive. The sandbox will not successfully
+ // load a plugin on a remote drive.
+ // Defaults to true.
+ bool is_on_local_drive;
+
+ // True when the plugin is an external plugin i.e. not bundled with Chrome or
+ // via the component updater.
+ // Defaults to false.
+ bool is_external;
+
+ // True when the plugin is bundled with Chrome.
+ // Defaults to false.
+ bool is_bundled;
+
// When is_internal is set, this contains the function pointers to the
// entry points for the internal plugins.
EntryPoints internal_entry_points;
« no previous file with comments | « chrome/common/pepper_flash.cc ('k') | content/public/common/pepper_plugin_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698