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

Side by Side Diff: remoting/webapp/me2mom/choice.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 | « no previous file | remoting/webapp/me2mom/debug_log.css » ('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 <meta charset="utf-8" /> 10 <meta charset="utf-8" />
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="choice.css" /> 14 <link rel="stylesheet" href="choice.css" />
15 <script src="debug_log.js"></script>
16 <script src="oauth2.js"></script>
14 <script src="remoting.js"></script> 17 <script src="remoting.js"></script>
15 <script src="oauth2.js"></script>
16 <title>Chromoting</title> 18 <title>Chromoting</title>
17 </head> 19 </head>
18 20
19 <body> 21 <body>
20 <div id="auth-panel"> 22 <div id="auth-panel">
21 <span id="oauth2-entry"> 23 <span id="oauth2-entry">
22 <form action="" onsubmit="authorizeOAuth2(); return false;"> 24 <form action="" onsubmit="authorizeOAuth2(); return false;">
23 <label for="oauth2-code">OAuth2 Token:</label> 25 <label for="oauth2-code">OAuth2 Token:</label>
24 <input id="oauth2-code" class="display-inline" type="text" 26 <input id="oauth2-code" class="display-inline" type="text"
25 onkeyup="handleOAuth2CodeChange();" 27 onkeyup="handleOAuth2CodeChange();"
(...skipping 15 matching lines...) Expand all
41 <span id="current-email" class="display-inline"></span> 43 <span id="current-email" class="display-inline"></span>
42 <input id="new-email" class="display-inline" name="new-email" 44 <input id="new-email" class="display-inline" name="new-email"
43 type="text" /> 45 type="text" />
44 <input id="email-submit-button" class="display-inline" 46 <input id="email-submit-button" class="display-inline"
45 type="submit" /> 47 type="submit" />
46 <input id="change-email-button" class="display-inline" type="button" 48 <input id="change-email-button" class="display-inline" type="button"
47 onclick="setEmail(''); return false;" value="Change Email" /> 49 onclick="setEmail(''); return false;" value="Change Email" />
48 </form> 50 </form>
49 </span> <!-- email-entry --> 51 </span> <!-- email-entry -->
50 52
53 <span id="debug-enable">
54 <form>
55 <input id="debug-log-toggle" class="display-inline" type="button"
56 value="Debug Log" onclick="toggleDebugLog(); return false;"/>
57 </form>
58 </span> <!-- debug-enable -->
59
51 </div> <!-- auth-panel --> 60 </div> <!-- auth-panel -->
52 61
53 <div id="main-panel"> 62 <div id="main-panel">
54 <header> 63 <header>
55 <img id="icon" src="chromoting128.png"> 64 <img id="icon" src="chromoting128.png">
56 <h1 class="icon-label host-element display-inline"> 65 <h1 class="icon-label host-element display-inline">
57 Chromoting&nbsp;>&nbsp;Share 66 Chromoting&nbsp;>&nbsp;Share
58 </h1> 67 </h1>
59 <h1 class="icon-label client-element display-inline"> 68 <h1 class="icon-label client-element display-inline">
60 Chromoting&nbsp;>&nbsp;Connect 69 Chromoting&nbsp;>&nbsp;Connect
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 Click here to <a class="switch-mode" 192 Click here to <a class="switch-mode"
184 href="#" 193 href="#"
185 onclick="setGlobalModePersistent(remoting.CLIENT_MODE); 194 onclick="setGlobalModePersistent(remoting.CLIENT_MODE);
186 return false;"> 195 return false;">
187 access a shared computer</a>. 196 access a shared computer</a>.
188 </div> <!-- host-footer --> 197 </div> <!-- host-footer -->
189 </footer> 198 </footer>
190 </div> <!-- main-panel --> 199 </div> <!-- main-panel -->
191 <div id="plugin-wrapper"> 200 <div id="plugin-wrapper">
192 </div> 201 </div>
202 <div id="debug-log">
203 </div>
193 </body> 204 </body>
194 </html> 205 </html>
OLDNEW
« no previous file with comments | « no previous file | remoting/webapp/me2mom/debug_log.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698