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

Side by Side Diff: chrome/browser/resources/options2/browser_options.html

Issue 10854126: Show an extra privacy warning on Win8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Only have the win8 privacy div when running on Windows. Created 8 years, 4 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="settings" class="page" hidden> 1 <div id="settings" class="page" hidden>
2 <header> 2 <header>
3 <h1 i18n-content="settingsTitle"></h1> 3 <h1 i18n-content="settingsTitle"></h1>
4 </header> 4 </header>
5 <if expr="not pp_ifdef('chromeos')"> 5 <if expr="not pp_ifdef('chromeos')">
6 <include src="sync_section.html"> 6 <include src="sync_section.html">
7 </if> 7 </if>
8 <if expr="pp_ifdef('chromeos')"> 8 <if expr="pp_ifdef('chromeos')">
9 <section> 9 <section>
10 <h3 i18n-content="sectionTitleInternet"></h3> 10 <h3 i18n-content="sectionTitleInternet"></h3>
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 <input id="use-24hour-clock" pref="settings.clock.use_24hour_clock" 185 <input id="use-24hour-clock" pref="settings.clock.use_24hour_clock"
186 type="checkbox"> 186 type="checkbox">
187 <span i18n-content="use24HourClock"></span> 187 <span i18n-content="use24HourClock"></span>
188 </label> 188 </label>
189 </div> 189 </div>
190 </div> 190 </div>
191 </section> 191 </section>
192 </if> 192 </if>
193 <section> 193 <section>
194 <h3 i18n-content="advancedSectionTitlePrivacy"></h3> 194 <h3 i18n-content="advancedSectionTitlePrivacy"></h3>
195 <if expr="is_win">
arv (Not doing code reviews) 2012/08/15 14:33:31 This will cause unbalanced <div>s. You probably wa
MAD 2012/08/15 19:29:41 Oupss... I missed one... Sorry... Fixed :-)
195 <div> 196 <div>
197 <div id="privacy-win8-data-settings" class="settings-row" hidden>
198 <span i18n-content="privacyWin8Data"></span>
199 <a target="_blank" i18n-content="learnMore"
200 i18n-values="href:privacyWin8DataLearnMoreURL"></a>
201 </div>
202 </if>
196 <div class="settings-row"> 203 <div class="settings-row">
197 <button id="privacyContentSettingsButton" 204 <button id="privacyContentSettingsButton"
198 i18n-content="privacyContentSettingsButton"></button> 205 i18n-content="privacyContentSettingsButton"></button>
199 <button id="privacyClearDataButton" 206 <button id="privacyClearDataButton"
200 i18n-content="privacyClearDataButton"></button> 207 i18n-content="privacyClearDataButton"></button>
201 </div> 208 </div>
202 <div id="privacy-explanation" class="settings-row"> 209 <div id="privacy-explanation" class="settings-row">
203 <span i18n-content="improveBrowsingExperience"></span> 210 <span i18n-content="improveBrowsingExperience"></span>
204 <span i18n-content="disableWebServices"></span> 211 <span i18n-content="disableWebServices"></span>
205 <a target="_blank" i18n-content="learnMore" 212 <a target="_blank" i18n-content="learnMore"
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 </section> 537 </section>
531 </if> 538 </if>
532 </div> <!-- advanced-settings-container --> 539 </div> <!-- advanced-settings-container -->
533 </div> <!-- advanced-settings --> 540 </div> <!-- advanced-settings -->
534 <footer> 541 <footer>
535 <button id="advanced-settings-expander" class="link-button" 542 <button id="advanced-settings-expander" class="link-button"
536 i18n-content="showAdvancedSettings"> 543 i18n-content="showAdvancedSettings">
537 </button> 544 </button>
538 </footer> 545 </footer>
539 </div> 546 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698