| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Used for observing function of the backend datasource for this page by | 5 // Used for observing function of the backend datasource for this page by |
| 6 // tests. | 6 // tests. |
| 7 var webui_responded_ = false; | 7 var webui_responded_ = false; |
| 8 | 8 |
| 9 var localStrings = new LocalStrings(); | 9 var localStrings = new LocalStrings(); |
| 10 | 10 |
| 11 cr.define('extensions', function() { | 11 cr.define('extensions', function() { |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 | 173 |
| 174 // Export | 174 // Export |
| 175 return { | 175 return { |
| 176 ExtensionSettings: ExtensionSettings | 176 ExtensionSettings: ExtensionSettings |
| 177 }; | 177 }; |
| 178 }); | 178 }); |
| 179 | 179 |
| 180 var ExtensionSettings = extensions.ExtensionSettings; | 180 var ExtensionSettings = extensions.ExtensionSettings; |
| 181 | 181 |
| 182 window.onload = function() { | 182 window.onload = function() { |
| 183 i18nTemplate.process(document, templateData); |
| 183 ExtensionSettings.getInstance().initialize(); | 184 ExtensionSettings.getInstance().initialize(); |
| 184 }; | 185 } |
| OLD | NEW |