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

Side by Side Diff: remoting/webapp/crd/js/background.js

Issue 964723003: Remove HRD butterbar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « remoting/resources/remoting_strings.grd ('k') | remoting/webapp/crd/js/butter_bar.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 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
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 }());
OLDNEW
« no previous file with comments | « remoting/resources/remoting_strings.grd ('k') | remoting/webapp/crd/js/butter_bar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698