OLD | NEW |
1 // Copyright (c) 2011 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 cr.define('options', function() { | 5 cr.define('options', function() { |
6 var OptionsPage = options.OptionsPage; | 6 var OptionsPage = options.OptionsPage; |
7 | 7 |
8 ///////////////////////////////////////////////////////////////////////////// | 8 ///////////////////////////////////////////////////////////////////////////// |
9 // InternetOptions class: | 9 // InternetOptions class: |
10 | 10 |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 page.removeAttribute('gsm'); | 443 page.removeAttribute('gsm'); |
444 } | 444 } |
445 OptionsPage.navigateToPage('detailsInternetPage'); | 445 OptionsPage.navigateToPage('detailsInternetPage'); |
446 }; | 446 }; |
447 | 447 |
448 // Export | 448 // Export |
449 return { | 449 return { |
450 InternetOptions: InternetOptions | 450 InternetOptions: InternetOptions |
451 }; | 451 }; |
452 }); | 452 }); |
OLD | NEW |