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

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

Issue 11475028: Add new instant extended specific pref. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed CR comments... Created 8 years 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 pref="default_search_provider.enabled"> 139 pref="default_search_provider.enabled">
140 </span> 140 </span>
141 <button id="manage-default-search-engines" 141 <button id="manage-default-search-engines"
142 i18n-content="defaultSearchManageEngines"> 142 i18n-content="defaultSearchManageEngines">
143 </button> 143 </button>
144 </div> 144 </div>
145 <div class="checkbox" guest-visibility="disabled"> 145 <div class="checkbox" guest-visibility="disabled">
146 <span class="controlled-setting-with-label"> 146 <span class="controlled-setting-with-label">
147 <!-- TODO(estade): metric? --> 147 <!-- TODO(estade): metric? -->
148 <input id="instant-enabled-control" type="checkbox" 148 <input id="instant-enabled-control" type="checkbox"
149 pref="instant.enabled" dialog-pref> 149 i18n-values="pref:instant_enabled" dialog-pref>
150 <span>
Evan Stade 2012/12/08 23:45:22 why did you delete this
MAD 2012/12/09 00:27:10 Oupsss... Sorry didn't notice... It's a mistake...
151 <!-- TODO(estade) There's a link in here which should not be 150 <!-- TODO(estade) There's a link in here which should not be
152 inside a <label>. --> 151 inside a <label>. -->
153 <label for="instant-enabled-control" 152 <label for="instant-enabled-control"
154 i18n-values=".innerHTML:instantPrefAndWarning"> 153 i18n-values=".innerHTML:instantPrefAndWarning">
155 </label> 154 </label>
156 <span id="instant-enabled-indicator" 155 <span id="instant-enabled-indicator"
157 class="controlled-setting-indicator" pref="instant.enabled" 156 class="controlled-setting-indicator"
158 dialog-pref> 157 i18n-values="pref:instant_enabled" dialog-pref>
159 </span> 158 </span>
160 </span> 159 </span>
161 </span> 160 </span>
162 </div> 161 </div>
163 </div> 162 </div>
164 </section> 163 </section>
165 <section id="sync-users-section" guest-visibility="hidden"> 164 <section id="sync-users-section" guest-visibility="hidden">
166 <h3 i18n-content="sectionTitleUsers"></h3> 165 <h3 i18n-content="sectionTitleUsers"></h3>
167 <if expr="pp_ifdef('chromeos')"> 166 <if expr="pp_ifdef('chromeos')">
168 <include src="sync_section.html"> 167 <include src="sync_section.html">
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 </section> 689 </section>
691 </if> 690 </if>
692 </div> <!-- advanced-settings-container --> 691 </div> <!-- advanced-settings-container -->
693 </div> <!-- advanced-settings --> 692 </div> <!-- advanced-settings -->
694 <footer> 693 <footer>
695 <button id="advanced-settings-expander" class="link-button" 694 <button id="advanced-settings-expander" class="link-button"
696 i18n-content="showAdvancedSettings"> 695 i18n-content="showAdvancedSettings">
697 </button> 696 </button>
698 </footer> 697 </footer>
699 </div> 698 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698