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

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

Issue 354483004: Implement <appview> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@app_view_skeleton
Patch Set: Added tests Created 6 years, 5 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 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 { 6 {
7 "namespace": "guestViewInternal", 7 "namespace": "appViewInternal",
8 "compiler_options": { 8 "compiler_options": {
9 "implemented_in": "chrome/browser/extensions/api/guest_view/guest_view_int ernal_api.h" 9 "implemented_in": "chrome/browser/extensions/api/guest_view/app_view_inter nal_api.h"
10 }, 10 },
11 "description": "none", 11 "description": "none",
12 "functions": [ 12 "functions": [
13 { 13 {
14 "name": "createGuest", 14 "name": "attachFrame",
15 "type": "function", 15 "type": "function",
lazyboy 2014/07/07 21:34:44 Please add a description of what this function doe
Fady Samuel 2014/07/08 15:47:09 Done.
16 "parameters": [ 16 "parameters": [
17 { 17 {
18 "type": "string", 18 "type": "string",
19 "name": "viewType", 19 "name": "url",
20 "nodoc": true 20 "nodoc": true
21 }, 21 },
22 { 22 {
23 "type": "object", 23 "type": "integer",
24 "name": "createParams", 24 "name": "guestInstanceId",
25 "properties": { 25 "nodoc": true
26 "storagePartitionId": {
27 "type": "string",
28 "optional": true
29 }
30 }
31 }, 26 },
32 { 27 {
33 "type": "function", 28 "type": "function",
34 "name": "callback", 29 "name": "callback",
30 "optional": true,
35 "parameters": [ 31 "parameters": [
36 { 32 {
37 "type": "integer", 33 "type": "integer",
38 "name": "instanceId" 34 "name": "instanceId"
39 } 35 }
40 ] 36 ]
41 } 37 }
42 ] 38 ]
39 },
40 {
41 "name": "denyRequest",
42 "type": "function",
lazyboy 2014/07/07 21:34:44 Same as above, add description of this function.
Fady Samuel 2014/07/08 15:47:09 Done.
43 "parameters": [
44 {
45 "type": "integer",
46 "name": "guestInstanceId",
47 "nodoc": true
48 }
49 ]
43 } 50 }
44 ] 51 ]
45 } 52 }
46 ] 53 ]
54
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698