OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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('options', function() { | 5 cr.define('options', function() { |
6 /** @const */ var OptionsPage = options.OptionsPage; | 6 /** @const */ var OptionsPage = options.OptionsPage; |
7 /** @const */ var SettingsDialog = options.SettingsDialog; | 7 /** @const */ var SettingsDialog = options.SettingsDialog; |
8 | 8 |
9 /** | 9 /** |
10 * HomePageOverlay class | 10 * HomePageOverlay class |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 HomePageOverlay.updateAutocompleteSuggestions = function() { | 148 HomePageOverlay.updateAutocompleteSuggestions = function() { |
149 var instance = HomePageOverlay.getInstance(); | 149 var instance = HomePageOverlay.getInstance(); |
150 instance.updateAutocompleteSuggestions_.apply(instance, arguments); | 150 instance.updateAutocompleteSuggestions_.apply(instance, arguments); |
151 }; | 151 }; |
152 | 152 |
153 // Export | 153 // Export |
154 return { | 154 return { |
155 HomePageOverlay: HomePageOverlay | 155 HomePageOverlay: HomePageOverlay |
156 }; | 156 }; |
157 }); | 157 }); |
OLD | NEW |