| 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 var OptionsPage = options.OptionsPage; | 6 var OptionsPage = options.OptionsPage; |
| 7 var ArrayDataModel = cr.ui.ArrayDataModel; | 7 var ArrayDataModel = cr.ui.ArrayDataModel; |
| 8 var RepeatingButton = cr.ui.RepeatingButton; | 8 var RepeatingButton = cr.ui.RepeatingButton; |
| 9 | 9 |
| 10 // | 10 // |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 if (cr.isChromeOS) { | 460 if (cr.isChromeOS) { |
| 461 if (loadTimeData.getBoolean('enableKioskSection')) { | 461 if (loadTimeData.getBoolean('enableKioskSection')) { |
| 462 $('kiosk-section').hidden = false; | 462 $('kiosk-section').hidden = false; |
| 463 | 463 |
| 464 $('manage-kiosk-apps-button').onclick = function(event) { | 464 $('manage-kiosk-apps-button').onclick = function(event) { |
| 465 OptionsPage.navigateToPage('kioskAppsOverlay'); | 465 OptionsPage.navigateToPage('kioskAppsOverlay'); |
| 466 }; | 466 }; |
| 467 } | 467 } |
| 468 } | 468 } |
| 469 | 469 |
| 470 // System section. |
| 471 $('hardwareAccelerationModeChange').style.visibility = 'hidden'; |
| 472 $('hardwareAccelerationModeCheckbox').onclick = function(event) { |
| 473 $('hardwareAccelerationModeChange').style.visibility = 'visible'; |
| 474 }; |
| 475 $('hardwareAccelerationModeChangeRestartLink').onclick = |
| 476 function(event) { |
| 477 chrome.send('restartBrowser'); |
| 478 }; |
| 479 |
| 470 if (loadTimeData.getBoolean('managedUsersEnabled') && | 480 if (loadTimeData.getBoolean('managedUsersEnabled') && |
| 471 loadTimeData.getBoolean('profileIsManaged')) { | 481 loadTimeData.getBoolean('profileIsManaged')) { |
| 472 $('managed-user-settings-section').hidden = false; | 482 $('managed-user-settings-section').hidden = false; |
| 473 | 483 |
| 474 $('open-managed-user-settings-button').onclick = function(event) { | 484 $('open-managed-user-settings-button').onclick = function(event) { |
| 475 OptionsPage.navigateToPage('managedUser'); | 485 OptionsPage.navigateToPage('managedUser'); |
| 476 }; | 486 }; |
| 477 } | 487 } |
| 478 }, | 488 }, |
| 479 | 489 |
| (...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1440 BrowserOptions.getLoggedInUsername = function() { | 1450 BrowserOptions.getLoggedInUsername = function() { |
| 1441 return BrowserOptions.getInstance().username_; | 1451 return BrowserOptions.getInstance().username_; |
| 1442 }; | 1452 }; |
| 1443 } | 1453 } |
| 1444 | 1454 |
| 1445 // Export | 1455 // Export |
| 1446 return { | 1456 return { |
| 1447 BrowserOptions: BrowserOptions | 1457 BrowserOptions: BrowserOptions |
| 1448 }; | 1458 }; |
| 1449 }); | 1459 }); |
| OLD | NEW |