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

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

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

Powered by Google App Engine
This is Rietveld 408576698