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

Side by Side Diff: third_party/WebKit/Source/core/inspector/inspector_protocol_config.json

Issue 2739323003: DevTools protocol interception, blocking & modification of requests (Closed)
Patch Set: Add a comment Created 3 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 { 1 {
2 "protocol": { 2 "protocol": {
3 "path": "browser_protocol.json", 3 "path": "browser_protocol.json",
4 "package": "core/inspector/protocol", 4 "package": "core/inspector/protocol",
5 "output": "inspector/protocol", 5 "output": "inspector/protocol",
6 "namespace": ["blink", "protocol"], 6 "namespace": ["blink", "protocol"],
7 "export_macro": "CORE_EXPORT", 7 "export_macro": "CORE_EXPORT",
8 "export_header": "core/CoreExport.h", 8 "export_header": "core/CoreExport.h",
9 "options": [ 9 "options": [
10 { 10 {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 "exclude_events": ["screencastFrame", "screencastVisibilityChang ed", "colorPicked", "interstitialShown", "interstitialHidden", "navigationReques ted"] 82 "exclude_events": ["screencastFrame", "screencastVisibilityChang ed", "colorPicked", "interstitialShown", "interstitialHidden", "navigationReques ted"]
83 }, 83 },
84 { 84 {
85 "domain": "Emulation", 85 "domain": "Emulation",
86 "include": ["forceViewport", "resetViewport", "resetPageScaleFac tor", "setPageScaleFactor", "setScriptExecutionDisabled", "setTouchEmulationEnab led", 86 "include": ["forceViewport", "resetViewport", "resetPageScaleFac tor", "setPageScaleFactor", "setScriptExecutionDisabled", "setTouchEmulationEnab led",
87 "setEmulatedMedia", "setCPUThrottlingRate", "setVirt ualTimePolicy", "setDefaultBackgroundColorOverride"], 87 "setEmulatedMedia", "setCPUThrottlingRate", "setVirt ualTimePolicy", "setDefaultBackgroundColorOverride"],
88 "include_events": ["virtualTimeBudgetExpired"] 88 "include_events": ["virtualTimeBudgetExpired"]
89 }, 89 },
90 { 90 {
91 "domain": "Network", 91 "domain": "Network",
92 "exclude": ["clearBrowserCache", "clearBrowserCookies", "getCook ies", "getAllCookies", "deleteCookie", "setCookie", "canEmulateNetworkConditions "], 92 "exclude": ["clearBrowserCache", "clearBrowserCookies", "getCook ies", "getAllCookies", "deleteCookie", "setCookie", "canEmulateNetworkConditions ",
93 "enableRequestInterception", "continueInterceptedReq uest"],
93 "async": ["getResponseBody"] 94 "async": ["getResponseBody"]
94 }, 95 },
95 { 96 {
96 "domain": "Target", 97 "domain": "Target",
97 "include": ["setAutoAttach", "sendMessageToTarget"], 98 "include": ["setAutoAttach", "sendMessageToTarget"],
98 "include_events": ["attachedToTarget", "detachedFromTarget", "re ceivedMessageFromTarget"] 99 "include_events": ["attachedToTarget", "detachedFromTarget", "re ceivedMessageFromTarget"]
99 } 100 }
100 ] 101 ]
101 }, 102 },
102 103
(...skipping 15 matching lines...) Expand all
118 }, 119 },
119 120
120 "lib": { 121 "lib": {
121 "package": "core/inspector/protocol", 122 "package": "core/inspector/protocol",
122 "output": "inspector/protocol", 123 "output": "inspector/protocol",
123 "string_header": "core/inspector/V8InspectorString.h", 124 "string_header": "core/inspector/V8InspectorString.h",
124 "export_macro": "CORE_EXPORT", 125 "export_macro": "CORE_EXPORT",
125 "export_header": "core/CoreExport.h" 126 "export_header": "core/CoreExport.h"
126 } 127 }
127 } 128 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698