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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 | 121 |
122 Preferences.getInstance().addEventListener('homepage', | 122 Preferences.getInstance().addEventListener('homepage', |
123 this.onHomePageChanged_.bind(this)); | 123 this.onHomePageChanged_.bind(this)); |
124 Preferences.getInstance().addEventListener('homepage_is_newtabpage', | 124 Preferences.getInstance().addEventListener('homepage_is_newtabpage', |
125 this.onHomePageIsNtpChanged_.bind(this)); | 125 this.onHomePageIsNtpChanged_.bind(this)); |
126 | 126 |
127 $('change-home-page').onclick = function(event) { | 127 $('change-home-page').onclick = function(event) { |
128 OptionsPage.navigateToPage('homePageOverlay'); | 128 OptionsPage.navigateToPage('homePageOverlay'); |
129 }; | 129 }; |
130 | 130 |
| 131 Preferences.getInstance().addEventListener('hotword.search_enabled', |
| 132 this.onHotwordSearchPrefChanged_.bind(this)); |
| 133 chrome.send('requestHotwordAvailabile'); |
| 134 |
131 if ($('set-wallpaper')) { | 135 if ($('set-wallpaper')) { |
132 $('set-wallpaper').onclick = function(event) { | 136 $('set-wallpaper').onclick = function(event) { |
133 chrome.send('openWallpaperManager'); | 137 chrome.send('openWallpaperManager'); |
134 }; | 138 }; |
135 } | 139 } |
136 | 140 |
137 $('themes-gallery').onclick = function(event) { | 141 $('themes-gallery').onclick = function(event) { |
138 window.open(loadTimeData.getString('themesGalleryURL')); | 142 window.open(loadTimeData.getString('themesGalleryURL')); |
139 }; | 143 }; |
140 $('themes-reset').onclick = function(event) { | 144 $('themes-reset').onclick = function(event) { |
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
859 this.showSectionWithAnimation_(section, container); | 863 this.showSectionWithAnimation_(section, container); |
860 else | 864 else |
861 this.hideSectionWithAnimation_(section, container); | 865 this.hideSectionWithAnimation_(section, container); |
862 } else { | 866 } else { |
863 section.hidden = !event.value.value; | 867 section.hidden = !event.value.value; |
864 this.onShowHomeButtonChangedCalled_ = true; | 868 this.onShowHomeButtonChangedCalled_ = true; |
865 } | 869 } |
866 }, | 870 }, |
867 | 871 |
868 /** | 872 /** |
| 873 * Activates the Hotword section from the System settings page. |
| 874 * @private |
| 875 */ |
| 876 showHotwordSection_: function() { |
| 877 $('hotword-search').hidden = false; |
| 878 }, |
| 879 |
| 880 /** |
| 881 * Event listener for the 'hotword search enabled' preference. Shows/hides |
| 882 * the UI for updating hotword settings.. |
| 883 * @param {Event} event The preference change event. |
| 884 */ |
| 885 onHotwordSearchPrefChanged_: function(event) { |
| 886 var section = $('hotword-settings-section'); |
| 887 var container = $('hotword-settings-section-container'); |
| 888 // event.value is a dictionary with details about the preference that was |
| 889 // changed. Within that dictionary, |value| is the new value of the |
| 890 // preference. In this case, the preference represents a Boolean so it |
| 891 // can be checked for true/false. |
| 892 if (event.value.value) |
| 893 this.showSectionWithAnimation_(section, container); |
| 894 else |
| 895 this.hideSectionWithAnimation_(section, container); |
| 896 }, |
| 897 |
| 898 /** |
869 * Event listener for the 'homepage is NTP' preference. Updates the label | 899 * Event listener for the 'homepage is NTP' preference. Updates the label |
870 * next to the 'Change' button. | 900 * next to the 'Change' button. |
871 * @param {Event} event The preference change event. | 901 * @param {Event} event The preference change event. |
872 */ | 902 */ |
873 onHomePageIsNtpChanged_: function(event) { | 903 onHomePageIsNtpChanged_: function(event) { |
874 if (!event.value.uncommitted) { | 904 if (!event.value.uncommitted) { |
875 $('home-page-url').hidden = event.value.value; | 905 $('home-page-url').hidden = event.value.value; |
876 $('home-page-ntp').hidden = !event.value.value; | 906 $('home-page-ntp').hidden = !event.value.value; |
877 } | 907 } |
878 }, | 908 }, |
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1566 'setSpokenFeedbackCheckboxState', | 1596 'setSpokenFeedbackCheckboxState', |
1567 'setThemesResetButtonEnabled', | 1597 'setThemesResetButtonEnabled', |
1568 'setVirtualKeyboardCheckboxState', | 1598 'setVirtualKeyboardCheckboxState', |
1569 'setupCloudPrintConnectorSection', | 1599 'setupCloudPrintConnectorSection', |
1570 'setupPageZoomSelector', | 1600 'setupPageZoomSelector', |
1571 'setupProxySettingsSection', | 1601 'setupProxySettingsSection', |
1572 'showBluetoothSettings', | 1602 'showBluetoothSettings', |
1573 'showCreateProfileError', | 1603 'showCreateProfileError', |
1574 'showCreateProfileSuccess', | 1604 'showCreateProfileSuccess', |
1575 'showCreateProfileWarning', | 1605 'showCreateProfileWarning', |
| 1606 'showHotwordSection', |
1576 'showManagedUserImportError', | 1607 'showManagedUserImportError', |
1577 'showManagedUserImportSuccess', | 1608 'showManagedUserImportSuccess', |
1578 'showMouseControls', | 1609 'showMouseControls', |
1579 'showTouchpadControls', | 1610 'showTouchpadControls', |
1580 'updateAccountPicture', | 1611 'updateAccountPicture', |
1581 'updateAutoLaunchState', | 1612 'updateAutoLaunchState', |
1582 'updateDefaultBrowserState', | 1613 'updateDefaultBrowserState', |
1583 'updateManagesSupervisedUsers', | 1614 'updateManagesSupervisedUsers', |
1584 'updateSearchEngines', | 1615 'updateSearchEngines', |
1585 'updateStartupPages', | 1616 'updateStartupPages', |
(...skipping 14 matching lines...) Expand all Loading... |
1600 BrowserOptions.getLoggedInUsername = function() { | 1631 BrowserOptions.getLoggedInUsername = function() { |
1601 return BrowserOptions.getInstance().username_; | 1632 return BrowserOptions.getInstance().username_; |
1602 }; | 1633 }; |
1603 } | 1634 } |
1604 | 1635 |
1605 // Export | 1636 // Export |
1606 return { | 1637 return { |
1607 BrowserOptions: BrowserOptions | 1638 BrowserOptions: BrowserOptions |
1608 }; | 1639 }; |
1609 }); | 1640 }); |
OLD | NEW |