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

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

Issue 7008003: Wire in OAuth2 support into non-sandboxed connections in libjingle. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: copyright + rebase 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
« no previous file with comments | « remoting/webapp/me2mom/remoting.js ('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 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"> 12 <script type="text/javascript" src="oauth2.js"></script>
13 </script> 13 <script type="text/javascript" src="remoting_session.js"></script>
14 <script type="text/javascript" src="remoting_session.js">
15 </script>
16 </head> 14 </head>
17 <body class="remoting_body" onload="init();"> 15 <body class="remoting_body" onload="init();">
18 <div id="status_msg_div"> 16 <div id="status_msg_div">
19 <span id="status_msg" class="status_msg">Initializing...</span> 17 <span id="status_msg" class="status_msg">Initializing...</span>
20 <input type="button" value="Scale to fit" class="scale_to_fit_toggle" 18 <input type="button" value="Scale to fit" class="scale_to_fit_toggle"
21 id="scale_to_fit_toggle" onclick="toggleScaleToFit();"/> 19 id="scale_to_fit_toggle" onclick="toggleScaleToFit();"/>
22 <input type="button" value="Show Debug Log" class="debug_log_toggle" 20 <input type="button" value="Show Debug Log" class="debug_log_toggle"
23 id="debug_log_toggle" onclick="toggleDebugLog();"/> 21 id="debug_log_toggle" onclick="toggleDebugLog();"/>
24 </div> 22 </div>
25 <div id="plugin_scroll_panel" class="plugin-scroll-panel"> 23 <div id="plugin_scroll_panel" class="plugin-scroll-panel">
26 <embed name="remoting" id="remoting" 24 <embed name="remoting" id="remoting"
27 src="about://none" type="pepper-application/x-chromoting"> 25 src="about://none" type="pepper-application/x-chromoting">
28 </div> 26 </div>
29 <div id="debug_log" class="debug_log"> 27 <div id="debug_log" class="debug_log">
30 </div> 28 </div>
31 </body> 29 </body>
32 </html> 30 </html>
OLDNEW
« no previous file with comments | « remoting/webapp/me2mom/remoting.js ('k') | remoting/webapp/me2mom/remoting_session.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698