| OLD | NEW |
| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 this.listDelegate_.showKeyboardShortcuts(); | 106 this.listDelegate_.showKeyboardShortcuts(); |
| 107 }, | 107 }, |
| 108 }); | 108 }); |
| 109 | 109 |
| 110 return { | 110 return { |
| 111 Sidebar: Sidebar, | 111 Sidebar: Sidebar, |
| 112 SidebarDelegate: SidebarDelegate, | 112 SidebarDelegate: SidebarDelegate, |
| 113 SidebarListDelegate: SidebarListDelegate, | 113 SidebarListDelegate: SidebarListDelegate, |
| 114 }; | 114 }; |
| 115 }); | 115 }); |
| 116 | |
| OLD | NEW |