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

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

Issue 1015623007: Changing Option String Resource to lowerCamelcases in handler_options_handler.cc file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding space after opening brace. Created 5 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/resources/options/handler_options.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id="content-settings-page" class="page" hidden> 1 <div id="content-settings-page" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="contentSettingsPage"></h1> 3 <h1 i18n-content="contentSettingsPage"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <!-- Cookie filter tab contents --> 5 <!-- Cookie filter tab contents -->
6 <section> 6 <section>
7 <h3 i18n-content="cookiesTabLabel"></h3> 7 <h3 i18n-content="cookiesTabLabel"></h3>
8 <div class="replace-with-website-settings"> 8 <div class="replace-with-website-settings">
9 <div class="radio controlled-setting-with-label"> 9 <div class="radio controlled-setting-with-label">
10 <label> 10 <label>
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 <div class="experimental-website-settings" hidden> 143 <div class="experimental-website-settings" hidden>
144 <span id="javascript-default-string"></span> 144 <span id="javascript-default-string"></span>
145 <div class="settings-row"> 145 <div class="settings-row">
146 <button class="website-settings-permission-button" 146 <button class="website-settings-permission-button"
147 contentType="javascript" i18n-content="websitesManage"></button> 147 contentType="javascript" i18n-content="websitesManage"></button>
148 </div> 148 </div>
149 </div> 149 </div>
150 </section> 150 </section>
151 <!-- Handlers settings --> 151 <!-- Handlers settings -->
152 <section id="handlers-section"> 152 <section id="handlers-section">
153 <h3 i18n-content="handlers_tab_label"></h3> 153 <h3 i18n-content="handlersTabLabel"></h3>
154 <div> 154 <div>
155 <div class="radio"> 155 <div class="radio">
156 <label> 156 <label>
157 <input type="radio" name="handlers" value="allow" 157 <input type="radio" name="handlers" value="allow"
158 class="handler-radio"> 158 class="handler-radio">
159 <span i18n-content="handlers_allow"></span> 159 <span i18n-content="handlersAllow"></span>
160 </label> 160 </label>
161 </div> 161 </div>
162 <div class="radio"> 162 <div class="radio">
163 <label> 163 <label>
164 <input type="radio" name="handlers" value="block" 164 <input type="radio" name="handlers" value="block"
165 class="handler-radio"> 165 class="handler-radio">
166 <span i18n-content="handlers_block"></span> 166 <span i18n-content="handlersBlock"></span>
167 </label> 167 </label>
168 </div> 168 </div>
169 <div class="settings-row"> 169 <div class="settings-row">
170 <button id="manage-handlers-button" contentType="handlers" 170 <button id="manage-handlers-button" contentType="handlers"
171 i18n-content="manageHandlers"></button> 171 i18n-content="manageHandlers"></button>
172 </div> 172 </div>
173 </div> 173 </div>
174 </section> 174 </section>
175 <!-- Plugins filter --> 175 <!-- Plugins filter -->
176 <section> 176 <section>
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 </section> 667 </section>
668 </div> 668 </div>
669 <div class="action-area"> 669 <div class="action-area">
670 <div class="button-strip"> 670 <div class="button-strip">
671 <button id="content-settings-overlay-confirm" class="default-button" 671 <button id="content-settings-overlay-confirm" class="default-button"
672 i18n-content="done"> 672 i18n-content="done">
673 </button> 673 </button>
674 </div> 674 </div>
675 </div> 675 </div>
676 </div> 676 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/handler_options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698