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

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

Issue 7078022: Fix up remoting UI to make it closer to spec (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: turned on strict 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
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 id="title">Remoting Session</title> 10 <title id="title">Remoting Session</title>
11 <link rel="stylesheet" type="text/css" href="main.css" /> 11 <link rel="stylesheet" type="text/css" href="main.css" />
12 <script type="text/javascript" src="oauth2.js"></script> 12 <script type="text/javascript" src="oauth2.js"></script>
13 <script type="text/javascript" src="remoting_session.js"></script> 13 <script type="text/javascript" src="remoting_session.js"></script>
14 </head> 14 </head>
15 <body class="remoting_body" onload="init();"> 15 <body class="remoting_body" onload="init();">
16 <div id="status_msg_div"> 16 <div id="status_msg_div">
17 <span id="status_msg" class="status_msg">Initializing...</span>
Jamie 2011/05/31 18:11:49 It's not clear to me what the purpose of the chang
dmac 2011/06/01 23:01:58 comments added in CSS files.
18 <input type="button" value="Scale to fit" class="scale_to_fit_toggle" 17 <input type="button" value="Scale to fit" class="scale_to_fit_toggle"
19 id="scale_to_fit_toggle" onclick="toggleScaleToFit();"/> 18 id="scale_to_fit_toggle" onclick="toggleScaleToFit();"/>
20 <input type="button" value="Show Debug Log" class="debug_log_toggle" 19 <input type="button" value="Show Debug Log" class="debug_log_toggle"
21 id="debug_log_toggle" onclick="toggleDebugLog();"/> 20 id="debug_log_toggle" onclick="toggleDebugLog();"/>
21 <span id="status_msg">Initializing...</span>
22 </div> 22 </div>
23 <div id="plugin_scroll_panel" class="plugin-scroll-panel"> 23 <div id="status_msg_padding">
24 </div>
25 <div id="plugin_scroll_panel">
24 <embed name="remoting" id="remoting" 26 <embed name="remoting" id="remoting"
25 src="about://none" type="pepper-application/x-chromoting"> 27 src="about://none" type="pepper-application/x-chromoting">
26 </div> 28 </div>
27 <div id="debug_log" class="debug_log"> 29 <div id="debug_log" class="debug_log">
28 </div> 30 </div>
29 </body> 31 </body>
30 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698