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

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: Adress feedback Created 5 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
OLDNEW
(Empty)
1 <html>
2 <head>
3 <link rel="stylesheet" type="text/css" href="sync-confirmation.css" media="s creen"></link>
4 <script src="chrome://resources/js/cr.js"></script>
5 <script src="chrome://resources/js/load_time_data.js"></script>
6 <script src="chrome://resources/js/util.js"></script>
7 <script type="text/javascript" src="sync-confirmation.js"></script>
8 </head>
9 <body>
10 <div class="container">
11 <div class="top-title-bar" i18n-content="syncConfirmationTitle"></div>
12 <div class="details">
13 <div class="picture-container">
14 <div class="picture">
15 <img id="profile-picture"></img>
16 <div class="checkmark-bubble"></div>
17 </div>
18 </div>
19 <div class="sync-message" i18n-values=".innerHTML:syncConfirmationBody"> </div>
20 <div class="action-container">
21 <div class="action-button-wrapper">
22 <div class="action-button" id="confirmButton">
23 <span class="action-button-label" i18n-content="syncConfirmationCo nfirmLabel"></span>
24 </div>
25 </div>
26 <div class="link-wrapper">
27 <span class="link" id="undoLink" i18n-content="syncConfirmationUndoL abel"></span>
28 </div>
29 </div>
30 </div>
31 </div>
32 </body>
33 <script src="chrome://sync-confirmation/strings.js"></script>
34 <script src="chrome://resources/js/i18n_template.js"></script>
35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698