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

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

Issue 439923002: Hangout remote desktop part I - It2Me mode (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /** @suppress {duplicate} */
6 var remoting = remoting || {};
7
8 /** @type {base.EventSource} */
9 remoting.hrdSessionEvents = new base.EventSource();
10 remoting.hrdSessionEvents.defineEvents(['sessionStateChanged']);
11
12 /** @enum {string} */
13 remoting.hrdSessionEvents.SessionStates = {
14 CONNECTING: 'CONNECTING',
15 CONNECTED: 'CONNECTED',
16 CLOSED: 'CLOSED',
17 ERROR: 'ERROR'
18 };
Jamie 2014/08/05 21:15:14 I don't think you need this file at all. sessionSt
kelvinp 2014/08/07 18:03:25 See comments in hrd_helper_session.js
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698