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

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

Issue 553573003: Compile chrome://settings, part 3: 167 proper errors left (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@G_options_errors_1
Patch Set: mark narrow type in createItem JSDoc Created 6 years, 3 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/onc_data.js
diff --git a/chrome/browser/resources/options/chromeos/onc_data.js b/chrome/browser/resources/options/chromeos/onc_data.js
index 78e25a7170f8ae302867cc125c0a0ab4628f5a73..3c296a1ff6c8a0592b6acd6733b9596276686ad3 100644
--- a/chrome/browser/resources/options/chromeos/onc_data.js
+++ b/chrome/browser/resources/options/chromeos/onc_data.js
@@ -10,6 +10,9 @@
cr.define('cr.onc', function() {
'use strict';
+ /**
+ * @constructor
+ */
function OncData(data) {
this.data_ = data;
// For convenience set 'type' to the active 'Type' value.
@@ -136,7 +139,7 @@ cr.define('cr.onc', function() {
/**
* Get the effective value from a Managed property ONC dictionary.
- * @param {object} property The managed property ONC dictionary.
+ * @param {Object} property The managed property ONC dictionary.
* @return {*} The effective value or undefined.
* @private
*/

Powered by Google App Engine
This is Rietveld 408576698