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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-binary-content.html

Issue 1609973002: DevTools: promisify ContentProvider.requestContent and all its clients. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaseline Created 4 years, 11 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: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-binary-content.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-binary-content.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-binary-content.html
index 64574e36457d565dd610f329c96b18a731d99a5c..0c4517e5fa0a8c39058c4e17c59c1240b9d95cff 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-binary-content.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-binary-content.html
@@ -14,7 +14,7 @@ function test()
var request = InspectorTest.networkRequests().pop();
InspectorTest.addResult("request.type: " + request.resourceType());
InspectorTest.addResult("request.mimeType: " + request.mimeType);
- request.requestContent(step3);
+ request.requestContent().then(step3);
}
function step3()

Powered by Google App Engine
This is Rietveld 408576698