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

Side by Side Diff: chrome/browser/remoting/resources/remoting_setup_done.html

Issue 6955010: Remove the Remoting Host component from Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove an errant include. Created 9 years, 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html i18n-values="dir:textdirection;">
2 <head>
3 <title></title>
4 <link rel="stylesheet" type="text/css" href="remoting_setup_flow.css" />
5 <script>
6 function setShowFirstTimeSetupSummary() {
7 document.getElementById("summary").innerHTML =
8 templateData['firsttimesetupsummary'];
9 }
10 function setMessage(msg) {
11 document.getElementById('msgContent').innerHTML = msg;
12 }
13 function onPageShown() {
14 document.getElementById("close").focus();
15 }
16 </script>
17 </head>
18 <body i18n-values=".style.fontFamily:fontfamily">
19 <div class="remoting-header" i18n-content="success"></div>
20 <div class="remoting-success-image">
21 <img src="../../resources/options/success-large.png" />
22 </div>
23 <div id="msgContent"></div>
24 <div class="remoting-footer">
25 <input id="close" type="submit" i18n-values="value:okay"
26 onclick='chrome.send("DialogClose", [""])' />
27 </div>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698