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

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

Issue 1007443004: Plugin Power Saver: Replace all "plug-in" with "plugin" for consistency. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove terms and native_client_sdk changes. Created 5 years, 9 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/browser/plugins/plugin_infobar_delegates.h ('k') | chrome/browser/plugins/plugin_metadata.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/plugins/plugin_metadata.h
diff --git a/chrome/browser/plugins/plugin_metadata.h b/chrome/browser/plugins/plugin_metadata.h
index 261e6e8703bc13874b083980fa19f326d53426e1..d2be9e74e094dacf3614e773ae71c144281891f6 100644
--- a/chrome/browser/plugins/plugin_metadata.h
+++ b/chrome/browser/plugins/plugin_metadata.h
@@ -18,7 +18,7 @@ struct WebPluginInfo;
class PluginMetadata {
public:
- // Information about a certain version of the plug-in.
+ // Information about a certain version of the plugin.
enum SecurityStatus {
SECURITY_STATUS_UP_TO_DATE,
SECURITY_STATUS_OUT_OF_DATE,
@@ -44,15 +44,15 @@ class PluginMetadata {
const std::string& language);
~PluginMetadata();
- // Unique identifier for the plug-in.
+ // Unique identifier for the plugin.
const std::string& identifier() const { return identifier_; }
- // Human-readable name of the plug-in.
+ // Human-readable name of the plugin.
const base::string16& name() const { return name_; }
// If |url_for_display| is false, |plugin_url| is the URL of the download page
- // for the plug-in, which should be opened in a new tab. If it is true,
- // |plugin_url| is the URL of the plug-in installer binary, which can be
+ // for the plugin, which should be opened in a new tab. If it is true,
+ // |plugin_url| is the URL of the plugin installer binary, which can be
// directly downloaded.
bool url_for_display() const { return url_for_display_; }
const GURL& plugin_url() const { return plugin_url_; }
@@ -66,7 +66,7 @@ class PluginMetadata {
void AddMimeType(const std::string& mime_type);
void AddMatchingMimeType(const std::string& mime_type);
- // Adds information about a plug-in version.
+ // Adds information about a plugin version.
void AddVersion(const Version& version, SecurityStatus status);
// Checks if |plugin| mime types match all |matching_mime_types_|.
@@ -79,7 +79,7 @@ class PluginMetadata {
static bool ParseSecurityStatus(const std::string& status_str,
SecurityStatus* status);
- // Returns the security status for the given plug-in (i.e. whether it is
+ // Returns the security status for the given plugin (i.e. whether it is
// considered out-of-date, etc.)
SecurityStatus GetSecurityStatus(const content::WebPluginInfo& plugin) const;
« no previous file with comments | « chrome/browser/plugins/plugin_infobar_delegates.h ('k') | chrome/browser/plugins/plugin_metadata.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698