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

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

Issue 291483010: <webview>: Move name attribute to chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@newwindow_refactor
Patch Set: Addressed John's comments Created 6 years, 7 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
« no previous file with comments | « chrome/browser/guest_view/web_view/web_view_guest.cc ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « chrome/browser/guest_view/web_view/web_view_guest.cc ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698