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

Side by Side Diff: remoting/webapp/me2mom/remoting_session.html

Issue 7108007: Add basic debug log to host page. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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
« no previous file with comments | « remoting/webapp/me2mom/remoting_session.css ('k') | remoting/webapp/me2mom/remoting_session.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 Copyright (c) 2011 The Chromium Authors. All rights reserved. 3 Copyright (c) 2011 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <html> 8 <html>
9 <head> 9 <head>
10 <title>Chromoting Session</title> 10 <title>Chromoting Session</title>
11 <link rel="shortcut icon" href="chromoting128.png" /> 11 <link rel="shortcut icon" href="chromoting128.png" />
12 <link rel="stylesheet" href="debug_log.css" />
12 <link rel="stylesheet" href="main.css" /> 13 <link rel="stylesheet" href="main.css" />
13 <link rel="stylesheet" href="remoting_session.css" /> 14 <link rel="stylesheet" href="remoting_session.css" />
15 <script src="debug_log.js"></script>
14 <script src="oauth2.js"></script> 16 <script src="oauth2.js"></script>
15 <script src="remoting_session.js"></script> 17 <script src="remoting_session.js"></script>
16 </head> 18 </head>
17 <body id="session-body"> 19 <body id="session-body">
18 <div id="session-controls"> 20 <div id="session-controls">
19 <form id="session-buttons"> 21 <form id="session-buttons">
20 <input id="scale-to-fit-toggle" type="button" value="Scale to fit" 22 <input id="scale-to-fit-toggle" type="button" value="Scale to fit"
21 onclick="toggleScaleToFit();"/> 23 onclick="toggleScaleToFit();"/>
22 <input id="debug-log-toggle" type="button" value="Show Debug Log" 24 <input id="debug-log-toggle" type="button" value="Show Debug Log"
23 onclick="toggleDebugLog(); return false;"/> 25 onclick="toggleDebugLog(); return false;"/>
24 </form> 26 </form>
25 <span id="status-msg">Initializing...</span> 27 <span id="status-msg">Initializing...</span>
26 </div> 28 </div>
27 <div id="session-controls-padding"> 29 <div id="session-controls-padding">
28 </div> 30 </div>
29 <div id="plugin-scroll-panel"> 31 <div id="plugin-scroll-panel">
30 <embed name="remoting" id="remoting" 32 <embed name="remoting" id="remoting"
31 src="about://none" type="pepper-application/x-chromoting"> 33 src="about://none" type="pepper-application/x-chromoting">
32 </div> 34 </div>
33 <div id="debug-log"> 35 <div id="debug-log">
34 </div> 36 </div>
35 </body> 37 </body>
36 </html> 38 </html>
OLDNEW
« no previous file with comments | « remoting/webapp/me2mom/remoting_session.css ('k') | remoting/webapp/me2mom/remoting_session.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698