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

Unified Diff: third_party/chrome/idl/web_request_internal.json

Issue 12261015: Import chrome idl into third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/chrome/idl/web_request.json ('k') | third_party/chrome/idl/web_socket_proxy_private.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/chrome/idl/web_request_internal.json
diff --git a/third_party/chrome/idl/web_request_internal.json b/third_party/chrome/idl/web_request_internal.json
new file mode 100644
index 0000000000000000000000000000000000000000..c5b8aac0bc6c9c206c9078faac14a4dce019f7ac
--- /dev/null
+++ b/third_party/chrome/idl/web_request_internal.json
@@ -0,0 +1,54 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+[
+ {
+ "namespace": "webRequestInternal",
+ "dependencies": ["webRequest"],
+ "nodoc": true,
+ "internal": true,
+ "functions": [
+ {
+ "name": "addEventListener",
+ "type": "function",
+ "description": "Used internally to implement the special form of addListener for the webRequest events.",
+ "parameters": [
+ {"type": "function", "name": "callback"},
+ {
+ "$ref": "webRequest.RequestFilter",
+ "name": "filter",
+ "description": "A set of filters that restricts the events that will be sent to this listener."
+ },
+ {
+ "type": "array",
+ "optional": true,
+ "name": "extraInfoSpec",
+ "description": "Array of extra information that should be passed to the listener function.",
+ "items": {
+ "type": "string",
+ "enum": ["requestHeaders", "responseHeaders", "blocking", "asyncBlocking", "requestBody"]
+ }
+ },
+ {"type": "string", "name": "eventName"},
+ {"type": "string", "name": "subEventName"}
+ ]
+ },
+ {
+ "name": "eventHandled",
+ "type": "function",
+ "description": "Used internally to send a response for a blocked event.",
+ "parameters": [
+ {"type": "string", "name": "eventName"},
+ {"type": "string", "name": "subEventName"},
+ {"type": "string", "name": "requestId"},
+ {
+ "$ref": "webRequest.BlockingResponse",
+ "optional": true,
+ "name": "response"
+ }
+ ]
+ }
+ ]
+ }
+]
« no previous file with comments | « third_party/chrome/idl/web_request.json ('k') | third_party/chrome/idl/web_socket_proxy_private.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698