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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-disabling-check-no-memory-leak.html

Issue 1609973002: DevTools: promisify ContentProvider.requestContent and all its clients. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit 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-disabling-check-no-memory-leak.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-disabling-check-no-memory-leak.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-disabling-check-no-memory-leak.html
index 6173861b5d79e9ceec52e75e9c962ae747144d27..c09e2a995034b08cf393aa897d1597299fe3119c 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-disabling-check-no-memory-leak.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-disabling-check-no-memory-leak.html
@@ -16,7 +16,7 @@ function test()
function step3()
{
var request1 = InspectorTest.networkRequests().pop();
- request1.requestContent(step4);
+ request1.requestContent().then(step4);
}
function step4()

Powered by Google App Engine
This is Rietveld 408576698