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

Side by Side Diff: chrome/common/extensions/api/webview.json

Issue 299753011: Move allocate instance id to chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 6 years, 6 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 (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 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 "parameters": [ 653 "parameters": [
654 { 654 {
655 "name": "allowed", 655 "name": "allowed",
656 "type": "boolean" 656 "type": "boolean"
657 } 657 }
658 ] 658 ]
659 } 659 }
660 ] 660 ]
661 }, 661 },
662 { 662 {
663 "name": "navigate",
664 "type": "function",
665 "parameters": [
666 {
667 "type": "integer",
668 "name": "instanceId"
669 },
670 {
671 "type": "string",
672 "name": "src"
673 }
674 ]
675 },
676 {
663 "name": "showContextMenu", 677 "name": "showContextMenu",
664 "type": "function", 678 "type": "function",
665 "parameters": [ 679 "parameters": [
666 { 680 {
667 "type": "integer", 681 "type": "integer",
668 "name": "instanceId", 682 "name": "instanceId",
669 "description": "The instance ID of the guest <webview> process . This not exposed to developers through the API." 683 "description": "The instance ID of the guest <webview> process . This not exposed to developers through the API."
670 }, 684 },
671 { 685 {
672 "type": "integer", 686 "type": "integer",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 { 721 {
708 "name": "onClicked", 722 "name": "onClicked",
709 "type": "function", 723 "type": "function",
710 "nodoc": true, 724 "nodoc": true,
711 "$ref": "contextMenusInternal.onClicked" 725 "$ref": "contextMenusInternal.onClicked"
712 } 726 }
713 ] 727 ]
714 } 728 }
715 ] 729 ]
716 730
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698