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

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 comments and use Polymer where relevant. 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>
3 <head>
4 <meta charset="utf-8">
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>
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>
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" i18n-values=".innerHTML:syncConfirmationBody"> </div>
24 <div class="action-container">
25 <paper-button id="confirmButton" i18n-content="syncConfirmationConfirm Label"></paper-button>
26 <paper-button id="undoButton" i18n-content="syncConfirmationUndoLabel" ></paper-button>
27 </div>
28 </div>
29 </div>
30 </body>
31 <script src="chrome://sync-confirmation/strings.js"></script>
32 <script src="chrome://resources/js/i18n_template.js"></script>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698