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

Unified Diff: chrome/browser/resources/options/chromeos_internet_options.html

Issue 6679040: [cros] Add checkbox for toggling data roaming setting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 9 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/chromeos_internet_options.html
diff --git a/chrome/browser/resources/options/chromeos_internet_options.html b/chrome/browser/resources/options/chromeos_internet_options.html
index c42ecd736d75a4a55be65308fb1288de9c3abb2b..f22a728baf38cfd808e8af139ace66d47d7a4948 100644
--- a/chrome/browser/resources/options/chromeos_internet_options.html
+++ b/chrome/browser/resources/options/chromeos_internet_options.html
@@ -1,31 +1,46 @@
<div class="page hidden" id="internetPage">
<h1 i18n-content="internetPage"></h1>
- <div id="lockedNetworkBanner">
- <span id="lockedNetworkIcon"></span>
- <span id="accessLockedText" i18n-content="accessLockedMsg"></span>
+ <div id="locked-network-banner">
+ <span id="locked-network-icon"></span>
+ <span id="access-locked-text" i18n-content="accessLockedMsg"></span>
</div>
- <section id="wirelessButtons">
+ <section id="wireless-buttons">
<h3 i18n-content="generalNetworkingTitle"></h3>
- <div id="networkingControls">
- <button id="enableWifi" class="hidden" i18n-content="enableWifi"></button>
- <button id="disableWifi" class="hidden"
- i18n-content="disableWifi"></button>
- <button id="enableCellular" class="hidden"
- i18n-content="enableCellular"></button>
- <button id="disableCellular" class="hidden"
- i18n-content="disableCellular"></button>
+ <div>
+ <div id="networking-controls" class="section-group">
+ <button id="enable-wifi" hidden
+ i18n-content="enableWifi"></button>
+ <button id="disable-wifi" hidden
+ i18n-content="disableWifi"></button>
+ <button id="enable-cellular" hidden
+ i18n-content="enableCellular"></button>
+ <button id="disable-cellular" hidden
+ i18n-content="disableCellular"></button>
+ </div>
+ <div id="internet-owner-only-warning" hidden>
+ <span i18n-content="ownerOnly"></span>
+ <span i18n-content="ownerUserId"></span>
+ </div>
+ <div class="checkbox">
+ <label>
+ <input id="enable-data-roaming"
+ pref="cros.signed.data_roaming_enabled"
+ metric="Options_Internet_DataRoaming" type="checkbox">
+ <span i18n-content="enableDataRoaming"></span>
+ </label>
+ </div>
</div>
</section>
- <section id="wiredSection">
+ <section id="wired-section">
<h3 i18n-content="wired_title"></h3>
- <div class="networks" id="wiredList"></div>
+ <div class="networks" id="wired-list"></div>
</section>
- <section id="wirelessSection">
+ <section id="wireless-section">
<h3 i18n-content="wireless_title"></h3>
- <div class="networks" id="wirelessList"></div>
+ <div class="networks" id="wireless-list"></div>
</section>
- <section id="rememberedSection">
+ <section id="remembered-section">
<h3 i18n-content="remembered_title"></h3>
- <div class="networks" id="rememberedList"></div>
+ <div class="networks" id="remembered-list"></div>
</section>
</div>

Powered by Google App Engine
This is Rietveld 408576698