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

Unified Diff: chrome/browser/resources/options/chromeos/preferred_networks.js

Issue 426723004: options: Remove a bunch of useless: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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/browser/resources/options/chromeos/preferred_networks.js
diff --git a/chrome/browser/resources/options/chromeos/preferred_networks.js b/chrome/browser/resources/options/chromeos/preferred_networks.js
index 432c38c95905a9e836d0b6aa6634430d081dbe3a..76d6dad9821563c622c8c566c98db35f1e69f3fe 100644
--- a/chrome/browser/resources/options/chromeos/preferred_networks.js
+++ b/chrome/browser/resources/options/chromeos/preferred_networks.js
@@ -28,9 +28,7 @@ cr.define('options', function() {
PreferredNetworks.prototype = {
__proto__: OptionsPage.prototype,
- /**
- * Initializes the preferred networks page.
- */
+ /** @override */
initializePage: function() {
OptionsPage.prototype.initializePage.call(this);
PreferredNetworkList.decorate($('remembered-network-list'));
@@ -51,10 +49,8 @@ cr.define('options', function() {
/**
* Creates a list entry for a remembered network.
- * @param{{Name: string,
- Type: string,
- servicePath: string}} data
- * Description of the network.
+ * @param {{Name: string, Type: string, servicePath: string}} data
+ * Description of the network.
* @constructor
*/
function PreferredNetworkListItem(data) {
@@ -72,9 +68,7 @@ cr.define('options', function() {
/**
* Description of the network.
- * @type {{Name: string,
- * Type: string,
- * servicePath: string}}
+ * @type {{Name: string, Type: string, servicePath: string}}
*/
data: null,
@@ -146,9 +140,7 @@ cr.define('options', function() {
/**
* Adds a remembered network to the list.
- * @param {{Name: string,
- Type: string,
- servicePath: string} data
+ * @param {{Name: string, Type: string, servicePath: string}} data
* Description of the network.
*/
append: function(data) {

Powered by Google App Engine
This is Rietveld 408576698