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

Side by Side Diff: chrome/browser/remoting/resources/remoting_setup_error.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 setMessage(msg) {
7 document.getElementById('msgContent').innerHTML = msg;
8 }
9 function onPageShown() {
10 document.getElementById("close").focus();
11 }
12 </script>
13 </head>
14 <body i18n-values=".style.fontFamily:fontfamily">
15 <div id="msgContent"></div>
16 <div class="remoting-footer">
17 <input id="retry" type="submit" i18n-values="value:retry"
18 onclick='chrome.send("RemotingSetup", ["Retry"])' />
19 <input id="close" type="submit" i18n-values="value:close"
20 onclick='chrome.send("DialogClose", [""])' />
21 </div>
22 </body>
23 </html>
OLDNEW
« no previous file with comments | « chrome/browser/remoting/resources/remoting_setup_done.html ('k') | chrome/browser/remoting/resources/remoting_setup_flow.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698