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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/search/search-in-static.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/search/search-in-static.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/search/search-in-static.html b/third_party/WebKit/LayoutTests/http/tests/inspector/search/search-in-static.html
index 441addce111bbf2c98c048b23bca29f29da093bc..7d17867e24f9f2c769d90fb03f9fadf3b199cfbd 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/search/search-in-static.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/search/search-in-static.html
@@ -13,7 +13,7 @@ function test()
function step2()
{
resource = WebInspector.resourceForURL("http://127.0.0.1:8000/inspector/search/resources/search.js");
- resource.requestContent(step3);
+ resource.requestContent().then(step3);
}
function step3()

Powered by Google App Engine
This is Rietveld 408576698