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

Side by Side Diff: chrome/browser/resources/settings/on_startup_page/startup_url_entry.js

Issue 2946563002: Run clang-format on .js files in c/b/r/settings (Closed)
Patch Set: dschuyler@ review Created 3 years, 6 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
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 settings-startup-url-entry represents a UI component that 6 * @fileoverview settings-startup-url-entry represents a UI component that
7 * displayes a URL that is loaded during startup. It includes a menu that allows 7 * displayes a URL that is loaded during startup. It includes a menu that allows
8 * the user to edit/remove the entry. 8 * the user to edit/remove the entry.
9 */ 9 */
10 10
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 e.preventDefault(); 56 e.preventDefault();
57 this.$$('dialog[is=cr-action-menu]').close(); 57 this.$$('dialog[is=cr-action-menu]').close();
58 this.fire(settings.EDIT_STARTUP_URL_EVENT, { 58 this.fire(settings.EDIT_STARTUP_URL_EVENT, {
59 model: this.model, 59 model: this.model,
60 anchor: this.$$('#dots'), 60 anchor: this.$$('#dots'),
61 }); 61 });
62 }, 62 },
63 63
64 /** @private */ 64 /** @private */
65 onDotsTap_: function() { 65 onDotsTap_: function() {
66 var actionMenu = /** @type {!CrActionMenuElement} */( 66 var actionMenu =
67 this.$$('#menu').get()); 67 /** @type {!CrActionMenuElement} */ (this.$$('#menu').get());
68 actionMenu.showAt(assert(this.$$('#dots'))); 68 actionMenu.showAt(assert(this.$$('#dots')));
69 }, 69 },
70 }); 70 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698