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

Side by Side Diff: chrome/browser/resources/md_extensions/sidebar.js

Issue 2948443003: Run clang-format on .js files in c/b/r/md_extensions (Closed)
Patch Set: 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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.exportPath('extensions'); 5 cr.exportPath('extensions');
6 6
7 // Declare this here to make closure compiler happy, and us sad. 7 // Declare this here to make closure compiler happy, and us sad.
8 /** @enum {number} */ 8 /** @enum {number} */
9 extensions.ShowingType = { 9 extensions.ShowingType = {
10 EXTENSIONS: 0, 10 EXTENSIONS: 0,
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 onKeyboardShortcutsTap_: function() { 51 onKeyboardShortcutsTap_: function() {
52 this.listDelegate_.showKeyboardShortcuts(); 52 this.listDelegate_.showKeyboardShortcuts();
53 }, 53 },
54 }); 54 });
55 55
56 return { 56 return {
57 Sidebar: Sidebar, 57 Sidebar: Sidebar,
58 SidebarListDelegate: SidebarListDelegate, 58 SidebarListDelegate: SidebarListDelegate,
59 }; 59 };
60 }); 60 });
61
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698