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

Side by Side Diff: remoting/webapp/app_remoting/js/context_menu_adapter.js

Issue 803653004: Update Chromoting to use /third_party/closure_compiler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Define Entry for browser_tests Created 5 years, 11 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
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 /** 5 /**
6 * @fileoverview 6 * @fileoverview
7 * Wrapper interface for chrome.contextMenus. 7 * Wrapper interface for chrome.contextMenus.
8 */ 8 */
9 9
10 'use strict'; 10 'use strict';
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 remoting.ContextMenuAdapter.prototype.updateCheckState = function(id, checked) { 43 remoting.ContextMenuAdapter.prototype.updateCheckState = function(id, checked) {
44 }; 44 };
45 45
46 /** 46 /**
47 * @param {string} id 47 * @param {string} id
48 */ 48 */
49 remoting.ContextMenuAdapter.prototype.remove = function(id) { 49 remoting.ContextMenuAdapter.prototype.remove = function(id) {
50 }; 50 };
51 51
52 /** 52 /**
53 * @param {function(OnClickData):void} listener 53 * @param {function(OnClickData=):void} listener
54 */ 54 */
55 remoting.ContextMenuAdapter.prototype.addListener = function(listener) { 55 remoting.ContextMenuAdapter.prototype.addListener = function(listener) {
56 }; 56 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698