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

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

Issue 8695007: Replace TOUCH_UI condition in WebUI with dynamic flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tiny tweaks based on CR feedback Created 9 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="add-language-overlay-page" class="page" hidden> 1 <div id="add-language-overlay-page" class="page" hidden>
2 <!-- 2 <!--
3 Buttons are too small for touch in the touchui builds. 3 Buttons are too small for touch in the touchui builds.
4 Use drop down box for touchui builds instead. 4 Use drop down box for touchui builds instead.
5 --> 5 -->
6 <if expr="pp_ifdef('chromeos') and not pp_ifdef('touchui')"> 6 <if expr="pp_ifdef('chromeos')">
7 <ul id="add-language-overlay-language-list"> 7 <ul id="add-language-overlay-language-list">
8 </ul> 8 </ul>
9 <button id="add-language-overlay-cancel-button" 9 <button id="add-language-overlay-cancel-button"
10 i18n-content="cancel"></button> 10 i18n-content="cancel"></button>
11 </if> 11 </if>
12 <if expr="not pp_ifdef('chromeos') or pp_ifdef('touchui')"> 12 <if expr="not pp_ifdef('chromeos')">
13 <h1 i18n-content="add_language_title"></h1> 13 <h1 i18n-content="add_language_title"></h1>
14 <div class="content-area"> 14 <div class="content-area">
15 <label> 15 <label>
16 <span i18n-content="add_language_select_label"></span> 16 <span i18n-content="add_language_select_label"></span>
17 <select id="add-language-overlay-language-list"></select> 17 <select id="add-language-overlay-language-list"></select>
18 </label> 18 </label>
19 </div> 19 </div>
20 <div class="action-area"> 20 <div class="action-area">
21 <div class="button-strip"> 21 <div class="button-strip">
22 <button id="add-language-overlay-cancel-button" i18n-content="cancel"> 22 <button id="add-language-overlay-cancel-button" i18n-content="cancel">
23 </button> 23 </button>
24 <button id="add-language-overlay-ok-button" i18n-content="ok"></button> 24 <button id="add-language-overlay-ok-button" i18n-content="ok"></button>
25 </div> 25 </div>
26 </div> 26 </div>
27 </if> 27 </if>
28 </div> 28 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.html ('k') | chrome/browser/resources/options/language_add_language_overlay.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698