Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: chrome/browser/resources/options/chromeos/system_options.html

Issue 8137003: Add display of available bluetooth devices, and mechanism for retrieving the list. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Remove addition of animated spinner in favour of reusing an existing throbber class. Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div id="systemPage" class="page" hidden> 1 <div id="systemPage" class="page" hidden>
2 <h1 i18n-content="systemPage"></h1> 2 <h1 i18n-content="systemPage"></h1>
3 <div class="displaytable"> 3 <div class="displaytable">
4 <section> 4 <section>
5 <h3 i18n-content="datetimeTitle"></h3> 5 <h3 i18n-content="datetimeTitle"></h3>
6 <div class="option-control-table"> 6 <div class="option-control-table">
7 <span class="option-name" i18n-content="timezone"></span> 7 <span class="option-name" i18n-content="timezone"></span>
8 <div id="timezone-value"> 8 <div id="timezone-value">
9 <select id="timezone-select" class="control" 9 <select id="timezone-select" class="control"
10 i18n-options="timezoneList" 10 i18n-options="timezoneList"
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 <section id="bluetooth-devices" hidden> 51 <section id="bluetooth-devices" hidden>
52 <h3 i18n-content="bluetooth"></h3> 52 <h3 i18n-content="bluetooth"></h3>
53 <div id="bluetooth-options-div"> 53 <div id="bluetooth-options-div">
54 <div id="enable-bluetooth" class="checkbox"> 54 <div id="enable-bluetooth" class="checkbox">
55 <label> 55 <label>
56 <input id="enable-bluetooth-label" type="checkbox" 56 <input id="enable-bluetooth-label" type="checkbox"
57 checked="checked" pref="settings.enable_bluetooth"> 57 checked="checked" pref="settings.enable_bluetooth">
58 <span i18n-content="enableBluetooth"></span> 58 <span i18n-content="enableBluetooth"></span>
59 </label> 59 </label>
60 </div> 60 </div>
61 <div class="bluetooth-device-list"> 61 <div id="bluetooth-device-list">
62 <!-- A list of connected devices is inserted here on page load. --> 62 <!-- A list of connected devices is inserted here on page load. -->
63 <!-- The list of devices is updated asynchronously on clicking 63 <!-- The list of devices is updated asynchronously on clicking
64 'Find Devices' --> 64 'Find Devices' -->
65 <button i18n-content="findBluetoothDevices"></button> 65 </div>
66 <div id = "bluetooth-finder-container">
67 <button id="bluetooth-find-devices"
68 i18n-content="findBluetoothDevices"></button>
69 <span id="bluetooth-scanning-label" class="transparent"
70 i18n-content="bluetoothScanning"></span>
71 <div id="bluetooth-scanning-icon"
72 class="throbber transparent"></div>
66 </div> 73 </div>
67 </div> 74 </div>
68 </section> 75 </section>
69 <section> 76 <section>
70 <h3 i18n-content="language"></h3> 77 <h3 i18n-content="language"></h3>
71 <div class="option-control-table"> 78 <div class="option-control-table">
72 <div class="option-name"> 79 <div class="option-name">
73 <button id="language-button" i18n-content="languageCustomize"> 80 <button id="language-button" i18n-content="languageCustomize">
74 </button> 81 </button>
75 </div> 82 </div>
(...skipping 11 matching lines...) Expand all
87 <label> 94 <label>
88 <input id="accesibility-check" type="checkbox"> 95 <input id="accesibility-check" type="checkbox">
89 <span i18n-content="accessibility"></span> 96 <span i18n-content="accessibility"></span>
90 </label> 97 </label>
91 </div> 98 </div>
92 </div> 99 </div>
93 </div> 100 </div>
94 </section> 101 </section>
95 </div> 102 </div>
96 </div> 103 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698