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

Unified Diff: chrome/browser/plugins/plugin_metadata.h

Issue 11418129: Matching IBM Java plugin using pattern matching. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 1 month 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
Index: chrome/browser/plugins/plugin_metadata.h
===================================================================
--- chrome/browser/plugins/plugin_metadata.h (revision 169236)
+++ chrome/browser/plugins/plugin_metadata.h (working copy)
@@ -41,7 +41,8 @@
const GURL& plugin_url,
const GURL& help_url,
const string16& group_name_matcher,
- const std::string& language);
+ const std::string& language,
+ bool use_pattern_matching);
~PluginMetadata();
// Unique identifier for the plug-in.
@@ -97,6 +98,7 @@
GURL plugin_url_;
GURL help_url_;
std::string language_;
+ bool use_pattern_matching_;
std::map<Version, SecurityStatus, VersionComparator> versions_;
std::vector<std::string> all_mime_types_;
std::vector<std::string> matching_mime_types_;

Powered by Google App Engine
This is Rietveld 408576698