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

Side by Side Diff: remoting/webapp/me2mom/wcs_loader.js

Issue 8416007: Refactored web-app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added consistency comment. Moved debug log keyboard shortcut handling. Created 9 years, 1 month 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 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 /** 6 /**
7 * @fileoverview 7 * @fileoverview
8 * A class that loads a WCS IQ client and constructs remoting.wcs as a 8 * A class that loads a WCS IQ client and constructs remoting.wcs as a
9 * wrapper for it. 9 * wrapper for it.
10 */ 10 */
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 136
137 /** 137 /**
138 * Notifies this object that WCS is ready. 138 * Notifies this object that WCS is ready.
139 * 139 *
140 * @return {void} Nothing. 140 * @return {void} Nothing.
141 * @private 141 * @private
142 */ 142 */
143 remoting.WcsLoader.prototype.onWcsReady_ = function() { 143 remoting.WcsLoader.prototype.onWcsReady_ = function() {
144 this.loadState_ = this.LoadState_.READY; 144 this.loadState_ = this.LoadState_.READY;
145 this.onReady_(true); 145 this.onReady_(true);
146 this.onReady_ = function() {}; 146 this.onReady_ = function(success) {};
Jamie 2011/10/27 20:41:36 This fixes a jscompiler error; it has nothing to d
garykac 2011/10/27 22:32:39 OK
147 }; 147 };
OLDNEW
« remoting/webapp/me2mom/remoting.js ('K') | « remoting/webapp/me2mom/util.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698