| 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 /** | 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 Loading... |
| 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 }; |
| OLD | NEW |