blob: 8059a46f5283193ddaaab661200c04ce952b491b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!doctype html>
<!--
Copyright (c) 2011 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<title id="title">Remoting Session</title>
<link rel="stylesheet" type="text/css" href="main.css" />
<script type="text/javascript" src="oauth2.js"></script>
<script type="text/javascript" src="remoting_session.js"></script>
</head>
<body class="remoting_body" onload="init();">
<div id="status_msg_div">
<span id="status_msg" class="status_msg">Initializing...</span>
<input type="button" value="Scale to fit" class="scale_to_fit_toggle"
id="scale_to_fit_toggle" onclick="toggleScaleToFit();"/>
<input type="button" value="Show Debug Log" class="debug_log_toggle"
id="debug_log_toggle" onclick="toggleDebugLog();"/>
</div>
<div id="plugin_scroll_panel" class="plugin-scroll-panel">
<embed name="remoting" id="remoting"
src="about://none" type="pepper-application/x-chromoting">
</div>
<div id="debug_log" class="debug_log">
</div>
</body>
</html>
|