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

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: HasPermission function moved 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 634 matching lines...) Expand 10 before | Expand all | Expand 10 after
645 "parameters": [ 645 "parameters": [
646 { 646 {
647 "name": "allowed", 647 "name": "allowed",
648 "type": "boolean" 648 "type": "boolean"
649 } 649 }
650 ] 650 ]
651 } 651 }
652 ] 652 ]
653 }, 653 },
654 { 654 {
655 "name": "navigate",
656 "type": "function",
657 "parameters": [
658 {
659 "type": "integer",
660 "name": "instanceId"
661 },
662 {
663 "type": "string",
664 "name": "src"
665 }
666 ]
667 },
668 {
655 "name": "showContextMenu", 669 "name": "showContextMenu",
656 "type": "function", 670 "type": "function",
657 "parameters": [ 671 "parameters": [
658 { 672 {
659 "type": "integer", 673 "type": "integer",
660 "name": "instanceId", 674 "name": "instanceId",
661 "description": "The instance ID of the guest <webview> process . This not exposed to developers through the API." 675 "description": "The instance ID of the guest <webview> process . This not exposed to developers through the API."
662 }, 676 },
663 { 677 {
664 "type": "integer", 678 "type": "integer",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 "events": [ 712 "events": [
699 { 713 {
700 "name": "onClicked", 714 "name": "onClicked",
701 "type": "function", 715 "type": "function",
702 "nodoc": true, 716 "nodoc": true,
703 "$ref": "contextMenusInternal.onClicked" 717 "$ref": "contextMenusInternal.onClicked"
704 } 718 }
705 ] 719 ]
706 } 720 }
707 ] 721 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/guest_view_internal.json ('k') | chrome/renderer/resources/extensions/web_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698