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

Side by Side Diff: extensions/common/api/guest_view_internal.json

Issue 618823002: GuestView: Move lifetime management out of content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added comment Created 6 years, 2 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": "guestViewInternal",
8 "compiler_options": { 8 "compiler_options": {
9 "implemented_in": "extensions/browser/api/guest_view/guest_view_internal_a pi.h" 9 "implemented_in": "extensions/browser/api/guest_view/guest_view_internal_a pi.h"
10 }, 10 },
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 "parameters": [ 60 "parameters": [
61 { 61 {
62 "type": "integer", 62 "type": "integer",
63 "name": "instanceId" 63 "name": "instanceId"
64 } 64 }
65 ] 65 ]
66 } 66 }
67 ] 67 ]
68 }, 68 },
69 { 69 {
70 "name": "destroyGuest",
71 "type": "function",
72 "parameters": [
73 {
74 "type": "integer",
75 "name": "instanceId"
76 }
77 ]
78 },
79 {
70 "name": "setAutoSize", 80 "name": "setAutoSize",
71 "type": "function", 81 "type": "function",
72 "parameters": [ 82 "parameters": [
73 { 83 {
74 "type": "integer", 84 "type": "integer",
75 "name": "instanceId", 85 "name": "instanceId",
76 "description": "The instance ID of the guest <webview> process . This not exposed to developers through the API." 86 "description": "The instance ID of the guest <webview> process . This not exposed to developers through the API."
77 }, 87 },
78 { 88 {
79 "$ref": "AutoSizeParams", 89 "$ref": "AutoSizeParams",
80 "name": "params" 90 "name": "params"
81 } 91 }
82 ] 92 ]
83 } 93 }
84 ] 94 ]
85 } 95 }
86 ] 96 ]
OLDNEW
« no previous file with comments | « extensions/browser/guest_view/web_view/web_view_guest.cc ('k') | extensions/renderer/resources/web_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698