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

Side by Side Diff: chrome/browser/resources/settings/settings_main/settings_main_rendered.js

Issue 2094223004: MD Settings: make chrome://[md-]settings/clearBrowserData URL work (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: asdf Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 cr.define('settings.main', function() {
6 /** @type {!Promise} */
7 var promise;
8
9 return {
10 /** @return {!Promise} */
11 get rendered() {
12 return assert(promise, 'rendered promise must be set before accessing');
13 },
14
15 /** @param {!Promise} rendered */
16 set rendered(rendered) {
17 assert(!promise, 'settings.main.rendered should only be set once');
18 promise = rendered;
19 },
20 };
21 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698