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

Side by Side Diff: chrome/browser/resources/settings/settings_ui/settings_ui_types.js

Issue 2541923002: MD Settings: Add Google Play Store (Arc++) section (Closed)
Patch Set: . Created 4 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview Closure typedefs for settings_ui. 6 * @fileoverview Closure typedefs for settings_ui.
7 */ 7 */
8 8
9 /** 9 /**
10 * Specifies page visibility in guest mode in cr and cros. 10 * Specifies page visibility in guest mode in cr and cros.
11 * @typedef {{ 11 * @typedef {{
12 * advancedSettings: (boolean|undefined), 12 * advancedSettings: (boolean|undefined),
13 * androidApps: (boolean|undefined),
13 * appearance: (boolean|undefined|AppearancePageVisibility), 14 * appearance: (boolean|undefined|AppearancePageVisibility),
14 * dateTime: (boolean|undefined|DateTimePageVisibility), 15 * dateTime: (boolean|undefined|DateTimePageVisibility),
15 * defaultBrowser: (boolean|undefined), 16 * defaultBrowser: (boolean|undefined),
16 * downloads: (undefined|DownloadsPageVisibility), 17 * downloads: (undefined|DownloadsPageVisibility),
17 * onStartup: (boolean|undefined), 18 * onStartup: (boolean|undefined),
18 * passwordsAndForms: (boolean|undefined), 19 * passwordsAndForms: (boolean|undefined),
19 * people: (boolean|undefined), 20 * people: (boolean|undefined),
20 * privacy: (undefined|PrivacyPageVisibility), 21 * privacy: (undefined|PrivacyPageVisibility),
21 * reset:(boolean|undefined), 22 * reset:(boolean|undefined),
22 * }} 23 * }}
(...skipping 28 matching lines...) Expand all
51 /** 52 /**
52 * @typedef {{ 53 * @typedef {{
53 * networkPrediction: boolean, 54 * networkPrediction: boolean,
54 * searchPrediction: boolean, 55 * searchPrediction: boolean,
55 * }} 56 * }}
56 */ 57 */
57 var PrivacyPageVisibility; 58 var PrivacyPageVisibility;
58 59
59 // TODO(mahmadi): Dummy code for closure compiler to process this file. 60 // TODO(mahmadi): Dummy code for closure compiler to process this file.
60 (function foo() {})(); 61 (function foo() {})();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698