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

Unified Diff: chrome/browser/resources/settings/prefs/prefs_types.js

Issue 1310373008: Add cr_policy_indicator for settings controls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md_settings_compiled_resources_3
Patch Set: Elim unused tyep Created 5 years, 4 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/settings/prefs/prefs_types.js
diff --git a/chrome/browser/resources/settings/prefs/prefs_types.js b/chrome/browser/resources/settings/prefs/prefs_types.js
index d757fc03dcdc853035d62b222fcb25aa2c7c4b4f..ebf09549c0458a8d90fb3e897aa214f0065f0b35 100644
--- a/chrome/browser/resources/settings/prefs/prefs_types.js
+++ b/chrome/browser/resources/settings/prefs/prefs_types.js
@@ -6,8 +6,16 @@
* @fileoverview Types for CrSettingsPrefsElement.
*/
+/**
+ * @typedef {{
+ * INITIALIZED: (string|undefined),
+ * isInitialized: (boolean|undefined)
Dan Beam 2015/08/28 00:20:22 indent off
stevenjb 2015/08/28 23:18:07 Done.
+ * }}
+ */
+var CrSettingsPrefs;
+
if (CrSettingsPrefs === undefined) {
- var CrSettingsPrefs = {};
+ CrSettingsPrefs = {};
/**
* The type of the event fired when prefs have been fetched and initialized.

Powered by Google App Engine
This is Rietveld 408576698