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

Unified Diff: chrome/common/extensions/api/web_request_internal.json

Issue 584163004: Move web_request directory to //extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase again Created 6 years, 3 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 | « chrome/common/extensions/api/web_request.json ('k') | extensions/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/web_request_internal.json
diff --git a/chrome/common/extensions/api/web_request_internal.json b/chrome/common/extensions/api/web_request_internal.json
deleted file mode 100644
index 4bb0540436ec6ee61741041fa3ec5f5c71e9e284..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/web_request_internal.json
+++ /dev/null
@@ -1,56 +0,0 @@
-// 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",
- "description": "none",
- "compiler_options": {
- "implemented_in": "chrome/browser/extensions/api/web_request/web_request_api.h"
- },
- "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"},
- {"type": "integer", "name": "webViewInstanceId"}
- ]
- },
- {
- "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 | « chrome/common/extensions/api/web_request.json ('k') | extensions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698