| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "namespace": "webview", | 7 "namespace": "webview", |
| 8 "description": "none", | 8 "description": "none", |
| 9 "dependencies": ["contextMenusInternal"], | 9 "dependencies": ["contextMenusInternal"], |
| 10 "types": [ | 10 "types": [ |
| (...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 "name": "reload", | 604 "name": "reload", |
| 605 "type": "function", | 605 "type": "function", |
| 606 "parameters": [ | 606 "parameters": [ |
| 607 { | 607 { |
| 608 "type": "integer", | 608 "type": "integer", |
| 609 "name": "instanceId" | 609 "name": "instanceId" |
| 610 } | 610 } |
| 611 ] | 611 ] |
| 612 }, | 612 }, |
| 613 { | 613 { |
| 614 "name": "setName", |
| 615 "type": "function", |
| 616 "parameters": [ |
| 617 { |
| 618 "type": "integer", |
| 619 "name": "instanceId" |
| 620 }, |
| 621 { |
| 622 "type": "string", |
| 623 "name": "frameName" |
| 624 } |
| 625 ] |
| 626 }, |
| 627 { |
| 614 "name": "setPermission", | 628 "name": "setPermission", |
| 615 "type": "function", | 629 "type": "function", |
| 616 "parameters": [ | 630 "parameters": [ |
| 617 { | 631 { |
| 618 "type": "integer", | 632 "type": "integer", |
| 619 "name": "instanceId" | 633 "name": "instanceId" |
| 620 }, | 634 }, |
| 621 { | 635 { |
| 622 "type": "integer", | 636 "type": "integer", |
| 623 "name": "requestId" | 637 "name": "requestId" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 { | 707 { |
| 694 "name": "onClicked", | 708 "name": "onClicked", |
| 695 "type": "function", | 709 "type": "function", |
| 696 "nodoc": true, | 710 "nodoc": true, |
| 697 "$ref": "contextMenusInternal.onClicked" | 711 "$ref": "contextMenusInternal.onClicked" |
| 698 } | 712 } |
| 699 ] | 713 ] |
| 700 } | 714 } |
| 701 ] | 715 ] |
| 702 | 716 |
| OLD | NEW |