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

Side by Side Diff: ui/webui/resources/js/cr/ui/bubble_button.js

Issue 2597013002: Run clang-format on ui/webui/resources (Closed)
Patch Set: remove cr_shared_menu.js Created 3 years, 12 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 cr.define('cr.ui', function() { 5 cr.define('cr.ui', function() {
6 /** 6 /**
7 * An image button that brings up an informative bubble when activated by 7 * An image button that brings up an informative bubble when activated by
8 * keyboard or mouse. 8 * keyboard or mouse.
9 * @constructor 9 * @constructor
10 * @extends {HTMLSpanElement} 10 * @extends {HTMLSpanElement}
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 * Abstract method: subclasses should overwrite it. There is no way to mark 81 * Abstract method: subclasses should overwrite it. There is no way to mark
82 * method as abstract for Closure Compiler, as of 82 * method as abstract for Closure Compiler, as of
83 * https://github.com/google/closure-compiler/issues/104. 83 * https://github.com/google/closure-compiler/issues/104.
84 * @type {!Function|undefined} 84 * @type {!Function|undefined}
85 * @protected 85 * @protected
86 */ 86 */
87 toggleBubble: assertNotReached, 87 toggleBubble: assertNotReached,
88 }; 88 };
89 89
90 // Export. 90 // Export.
91 return { 91 return {BubbleButton: BubbleButton};
92 BubbleButton: BubbleButton
93 };
94 }); 92 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698