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

Side by Side Diff: chrome/browser/resources/sync_confirmation/sync_confirmation.html

Issue 1487283005: Implement the new Sync Confirmation dialog on Linux and Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback Created 4 years, 11 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
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
Dan Beam 2016/01/21 03:57:33 this should probably be <html i18n-values="dir:te
anthonyvd 2016/01/21 22:36:11 Done.
3 <head>
4 <meta charset="utf-8">
Dan Beam 2016/01/21 03:57:33 why do you need this?
anthonyvd 2016/01/21 22:36:11 It was pointed to me that it was required for inte
Dan Beam 2016/01/22 01:26:57 it seems that lang does affect this[1], but it's n
anthonyvd 2016/01/22 17:19:56 Sounds good, thanks!
5 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.htm l">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper- button.html">
7 <link rel="stylesheet" href="sync-confirmation.css"></link>
Dan Beam 2016/01/21 03:57:33 - should be _
anthonyvd 2016/01/21 22:36:11 Done.
8 <script src="chrome://resources/js/cr.js"></script>
9 <script src="chrome://resources/js/load_time_data.js"></script>
10 <script src="chrome://resources/js/util.js"></script>
11 <script src="sync-confirmation.js"></script>
Dan Beam 2016/01/21 03:57:33 why do these need to be in the head? they will blo
Dan Beam 2016/01/21 03:57:33 - should be _
anthonyvd 2016/01/21 22:36:11 Done.
anthonyvd 2016/01/21 22:36:11 Done.
12 </head>
13 <body>
14 <div class="container">
15 <div class="top-title-bar" i18n-content="syncConfirmationTitle"></div>
16 <div class="details">
17 <div class="picture-container">
18 <div class="picture">
19 <img id="profile-picture"></img>
20 <div class="checkmark-bubble"></div>
21 </div>
22 </div>
23 <div class="sync-message"
24 i18n-values=".innerHTML:syncConfirmationBody"></div>
25 <div class="action-container">
26 <paper-button id="confirmButton"
27 i18n-content="syncConfirmationConfirmLabel"></paper-button>
28 <paper-button id="undoButton"
29 i18n-content="syncConfirmationUndoLabel"></paper-button>
30 </div>
31 </div>
32 </div>
33 </body>
34 <script src="chrome://sync-confirmation/strings.js"></script>
35 <script src="chrome://resources/js/i18n_template.js"></script>
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698