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

Side by Side Diff: chrome/browser/sync/resources/merge_and_sync.html

Issue 160542: Rolling back 22317 (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 4 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 <HTML>
2 <HEAD>
3 <TITLE></TITLE>
4 <style type="text/css">
5 body,td,div,p,a,font,span {font-family: arial,sans-serif;}
6 body { bgcolor:"#ffffff" }
7 .gaia.le.button { font-family: Arial, Helvetica, sans-serif; font-size: smaller; }
8 </style>
9 <script>
10 function advanceThrobber() {
11 var throbber = document.getElementById('throb');
12 throbber.style.backgroundPositionX =
13 ((parseInt(throbber.style.backgroundPositionX) - 16) % 576) + 'px';
14 }
15
16 function acceptMergeAndSync() {
17 var throbber = document.getElementById('throbber_container');
18 throbber.style.display = "inline";
19 document.getElementById("acceptMerge").disabled = true;
20 chrome.send("SubmitMergeAndSync", [""]);
21 }
22
23 function Close() {
24 chrome.send("DialogClose", [""]);
25 }
26
27 function showMergeAndSyncDone() {
28 var throbber = document.getElementById('throbber_container');
29 throbber.style.display = "none";
30 document.getElementById("header").innerHTML =
31 "<font size='-1'><b>All done!</b></font>";
32 document.getElementById("close").value = "Close";
33 setTimeout(Close, 1600);
34 }
35 </script>
36 </HEAD>
37 <BODY onload="setInterval(advanceThrobber, 30);">
38 <p id="header"><font size="-1"><b>Your bookmarks will be merged.</b></font></p>< br />
39 <img src="merge_and_sync.png" alt="Merge and sync" />
40 <br />
41 <p><font size="-1">
42 Your existing online bookmarks will be merged with the
43 bookmarks on this machine. You can use the Bookmark Manager to organize
44 your bookmarks after the merge.</font></p>
45 <br />
46 <table align="right">
47 <tr>
48 <td>
49 <div id="throbber_container" style="display:none">
50 <div id="throb" style="background-image:url(throbber.png);
51 width:16px; height:16px; background-position:0px;">
52 </div>
53 </div>
54 </td>
55 <td>
56 <input id="acceptMerge" type="button" class="gaia le button" name="accept"
57 value="Merge and sync"
58 onclick="acceptMergeAndSync();" />
59 </td>
60 <td>
61 <input id="close" type="button" value="Abort" onclick="Close();"/>
62 </td>
63 </tr>
64 </table>
65 </BODY>
66 </HTML>
OLDNEW
« no previous file with comments | « chrome/browser/sync/resources/google_transparent.png ('k') | chrome/browser/sync/resources/merge_and_sync.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698