Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 /** @suppress {duplicate} */ | 5 /** @suppress {duplicate} */ |
| 6 var remoting = remoting || {}; | 6 var remoting = remoting || {}; |
| 7 | 7 |
| 8 (function(){ | 8 (function(){ |
| 9 | 9 |
| 10 'use strict'; | 10 'use strict'; |
| 11 | 11 |
| 12 var ENABLE_HANGOUT_REMOTE_ASSISTANCE = true; | 12 var ENABLE_HANGOUT_REMOTE_ASSISTANCE = false; |
|
Jamie
2015/03/03 00:09:02
Can you file a bug to remove this completely?
dcaiafa
2015/03/03 00:58:32
Done. crbug.com/463322
| |
| 13 | 13 |
| 14 /** | 14 /** |
| 15 * @constructor | 15 * @constructor |
| 16 */ | 16 */ |
| 17 var BackgroundPage = function() { | 17 var BackgroundPage = function() { |
| 18 /** @private {remoting.AppLauncher} */ | 18 /** @private {remoting.AppLauncher} */ |
| 19 this.appLauncher_ = null; | 19 this.appLauncher_ = null; |
| 20 /** @private {remoting.ActivationHandler} */ | 20 /** @private {remoting.ActivationHandler} */ |
| 21 this.activationHandler_ = null; | 21 this.activationHandler_ = null; |
| 22 /** @private {remoting.It2MeService} */ | 22 /** @private {remoting.It2MeService} */ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 70 this.it2meService_ = null; | 70 this.it2meService_ = null; |
| 71 base.dispose(this.disposables_); | 71 base.dispose(this.disposables_); |
| 72 this.disposables_ = null; | 72 this.disposables_ = null; |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 window.addEventListener('load', function() { | 75 window.addEventListener('load', function() { |
| 76 remoting.backgroundPage = new BackgroundPage(); | 76 remoting.backgroundPage = new BackgroundPage(); |
| 77 }, false); | 77 }, false); |
| 78 | 78 |
| 79 }()); | 79 }()); |
| OLD | NEW |