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

Side by Side Diff: remoting/webapp/toolbar.js

Issue 386853002: Add a Record button to the web-app if the host supports video recording. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: function -> var Created 6 years, 4 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/options_menu.js ('k') | remoting/webapp/video_frame_recorder.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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview 6 * @fileoverview
7 * Class representing the client tool-bar. 7 * Class representing the client tool-bar.
8 */ 8 */
9 9
10 'use strict'; 10 'use strict';
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 /** 45 /**
46 * @type {remoting.OptionsMenu} 46 * @type {remoting.OptionsMenu}
47 * @private 47 * @private
48 */ 48 */
49 this.optionsMenu_ = new remoting.OptionsMenu( 49 this.optionsMenu_ = new remoting.OptionsMenu(
50 document.getElementById('send-ctrl-alt-del'), 50 document.getElementById('send-ctrl-alt-del'),
51 document.getElementById('send-print-screen'), 51 document.getElementById('send-print-screen'),
52 document.getElementById('screen-resize-to-client'), 52 document.getElementById('screen-resize-to-client'),
53 document.getElementById('screen-shrink-to-fit'), 53 document.getElementById('screen-shrink-to-fit'),
54 document.getElementById('new-connection'), 54 document.getElementById('new-connection'),
55 document.getElementById('toggle-full-screen')); 55 document.getElementById('toggle-full-screen'),
56 null);
56 57
57 window.addEventListener('mousemove', remoting.Toolbar.onMouseMove, false); 58 window.addEventListener('mousemove', remoting.Toolbar.onMouseMove, false);
58 window.addEventListener('resize', this.center.bind(this), false); 59 window.addEventListener('resize', this.center.bind(this), false);
59 60
60 registerEventListener('toolbar-disconnect', 'click', remoting.disconnect); 61 registerEventListener('toolbar-disconnect', 'click', remoting.disconnect);
61 registerEventListener('toolbar-stub', 'click', 62 registerEventListener('toolbar-stub', 'click',
62 function() { remoting.toolbar.toggle(); }); 63 function() { remoting.toolbar.toggle(); });
63 64
64 // Prevent the preview canceling if the user is interacting with the tool-bar. 65 // Prevent the preview canceling if the user is interacting with the tool-bar.
65 /** @type {remoting.Toolbar} */ 66 /** @type {remoting.Toolbar} */
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 } 158 }
158 }; 159 };
159 160
160 /** @type {remoting.Toolbar} */ 161 /** @type {remoting.Toolbar} */
161 remoting.toolbar = null; 162 remoting.toolbar = null;
162 163
163 /** @private */ 164 /** @private */
164 remoting.Toolbar.STUB_EXTENDED_CLASS_ = 'toolbar-stub-extended'; 165 remoting.Toolbar.STUB_EXTENDED_CLASS_ = 'toolbar-stub-extended';
165 /** @private */ 166 /** @private */
166 remoting.Toolbar.VISIBLE_CLASS_ = 'toolbar-visible'; 167 remoting.Toolbar.VISIBLE_CLASS_ = 'toolbar-visible';
OLDNEW
« no previous file with comments | « remoting/webapp/options_menu.js ('k') | remoting/webapp/video_frame_recorder.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698