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

Unified Diff: chrome/test/data/extensions/api_test/webrequest/framework.js

Issue 10694055: Add read-only access to POST data for webRequest's onBeforeRequest (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Deleting a forgotten comment Created 8 years, 5 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
Index: chrome/test/data/extensions/api_test/webrequest/framework.js
diff --git a/chrome/test/data/extensions/api_test/webrequest/framework.js b/chrome/test/data/extensions/api_test/webrequest/framework.js
index a0a9dc76a4ce794e8fd60c63ffbc48bdfc2a9d75..0155c36333ed59dc2012bc6ae62fe4232679a375 100644
--- a/chrome/test/data/extensions/api_test/webrequest/framework.js
+++ b/chrome/test/data/extensions/api_test/webrequest/framework.js
@@ -268,7 +268,7 @@ function initListeners(filter, extraInfoSpec) {
chrome.webRequest.onBeforeRequest.addListener(
function(details) {
return captureEvent("onBeforeRequest", details);
- }, filter, intersect(extraInfoSpec, ["blocking"]));
+ }, filter, intersect(extraInfoSpec, ["blocking","requestPostData"]));
battre 2012/07/11 12:28:43 nit: space before "
vabr (Chromium) 2012/07/12 15:13:11 Done.
chrome.webRequest.onBeforeSendHeaders.addListener(
function(details) {
return captureEvent("onBeforeSendHeaders", details);

Powered by Google App Engine
This is Rietveld 408576698