Chromium Code Reviews| Index: chrome/browser/resources/sync_confirmation/sync_confirmation.html |
| diff --git a/chrome/browser/resources/sync_confirmation/sync_confirmation.html b/chrome/browser/resources/sync_confirmation/sync_confirmation.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..271031e217df6db9615f81ae4db965d27c4b81f4 |
| --- /dev/null |
| +++ b/chrome/browser/resources/sync_confirmation/sync_confirmation.html |
| @@ -0,0 +1,33 @@ |
| +<!doctype html> |
| +<html> |
| + <head> |
| + <meta charset="utf-8"> |
| + <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| + <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html"> |
| + <link rel="stylesheet" href="sync-confirmation.css"></link> |
| + <script src="chrome://resources/js/cr.js"></script> |
| + <script src="chrome://resources/js/load_time_data.js"></script> |
| + <script src="chrome://resources/js/util.js"></script> |
| + <script src="sync-confirmation.js"></script> |
| + </head> |
| + <body> |
| + <div class="container"> |
| + <div class="top-title-bar" i18n-content="syncConfirmationTitle"></div> |
| + <div class="details"> |
| + <div class="picture-container"> |
| + <div class="picture"> |
| + <img id="profile-picture"></img> |
| + <div class="checkmark-bubble"></div> |
| + </div> |
| + </div> |
| + <div class="sync-message" i18n-values=".innerHTML:syncConfirmationBody"></div> |
|
Dan Beam
2016/01/13 23:45:22
<div class="sync-message"
i18n-values=".innerH
anthonyvd
2016/01/18 21:40:08
Done.
Should the long <link> tags be broken up as
Dan Beam
2016/01/21 03:57:33
no (because they're URLs)
anthonyvd
2016/01/21 22:36:11
Acknowledged.
|
| + <div class="action-container"> |
| + <paper-button id="confirmButton" i18n-content="syncConfirmationConfirmLabel"></paper-button> |
|
Dan Beam
2016/01/13 23:45:22
<paper-button id="confirmButton"
i18n-content=
anthonyvd
2016/01/18 21:40:08
Done.
|
| + <paper-button id="undoButton" i18n-content="syncConfirmationUndoLabel"></paper-button> |
|
Dan Beam
2016/01/13 23:45:22
<paper-button id="undoButton"
i18n-content="sy
anthonyvd
2016/01/18 21:40:08
Done.
|
| + </div> |
| + </div> |
| + </div> |
| + </body> |
| + <script src="chrome://sync-confirmation/strings.js"></script> |
| + <script src="chrome://resources/js/i18n_template.js"></script> |
| +</html> |