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

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

Issue 17447005: <webview>: Move back, forward, canGoBack, canGoForward, go from content to chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@filter_listener
Patch Set: Merge against latest changes in other CL Created 7 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 "nodoc": true, 8 "nodoc": true,
9 "functions": [ 9 "functions": [
10 { 10 {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 { 63 {
64 "name": "result", 64 "name": "result",
65 "optional": true, 65 "optional": true,
66 "type": "array", 66 "type": "array",
67 "items": {"type": "any", "minimum": 0}, 67 "items": {"type": "any", "minimum": 0},
68 "description": "The result of the script in every injected frame ." 68 "description": "The result of the script in every injected frame ."
69 } 69 }
70 ] 70 ]
71 } 71 }
72 ] 72 ]
73 },
74 {
75 "name": "go",
76 "type": "function",
77 "parameters": [
78 {
79 "type": "integer",
80 "name": "instanceId"
81 },
82 {
83 "type": "integer",
84 "name": "relativeIndex"
85 }
86 ]
73 } 87 }
74 ] 88 ]
75 } 89 }
76 ] 90 ]
77 91
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698