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

Unified Diff: chrome/common/extensions/docs/examples/extensions/plugin_settings/js/plugin_settings.js

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
Index: chrome/common/extensions/docs/examples/extensions/plugin_settings/js/plugin_settings.js
diff --git a/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/plugin_settings.js b/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/plugin_settings.js
index 0b2923e669ae76c9977c85feb0c822560f72cb92..1727356c466ef1db04b9a4d5d065f7c63a964a09 100644
--- a/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/plugin_settings.js
+++ b/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/plugin_settings.js
@@ -12,14 +12,14 @@ cr.define('pluginSettings', function() {
/**
* Creates a new content settings model.
- * @param {string} plugin Identifies the plug-in for which this object stores
+ * @param {string} plugin Identifies the plugin for which this object stores
* settings.
* @constructor
* @extends {cr.EventTarget}
*/
function Settings(plugin) {
/**
- * Identifies the plug-in for which this object stores settings.
+ * Identifies the plugin for which this object stores settings.
* @type {string}
* @private
*/
@@ -195,7 +195,7 @@ cr.define('pluginSettings', function() {
},
/**
- * @return {!Array} A list of all content setting rules for this plug-in.
+ * @return {!Array} A list of all content setting rules for this plugin.
*/
getAll: function() {
var rules = [];

Powered by Google App Engine
This is Rietveld 408576698