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

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 i18n-values="dir:textdirection;lang:language">
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="chrome://resources/css/text_defaults_md.css">
8 <link rel="stylesheet" href="sync_confirmation.css"></link>
9 </head>
10 <body>
11 <div class="container">
12 <div class="top-title-bar" i18n-content="syncConfirmationTitle"></div>
13 <div class="details">
14 <div class="picture-container">
15 <div class="picture">
16 <img id="profile-picture"></img>
17 <div class="checkmark-bubble"></div>
18 </div>
19 </div>
20 <div class="sync-message"
21 i18n-values=".innerHTML:syncConfirmationBody"></div>
22 <div class="action-container">
23 <paper-button id="confirmButton"
24 i18n-content="syncConfirmationConfirmLabel"></paper-button>
25 <paper-button id="undoButton"
26 i18n-content="syncConfirmationUndoLabel"></paper-button>
27 </div>
28 </div>
29 </div>
30 </body>
31 <script src="chrome://resources/js/cr.js"></script>
32 <script src="chrome://resources/js/load_time_data.js"></script>
33 <script src="chrome://resources/js/util.js"></script>
34 <script src="sync_confirmation.js"></script>
35 <script src="chrome://sync-confirmation/strings.js"></script>
36 <script src="chrome://resources/js/i18n_template.js"></script>
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698