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

Unified Diff: third_party/WebKit/Source/core/loader/PingLoaderTest.cpp

Issue 2814703004: Make blink::ResourceRequest ctors explicit (Closed)
Patch Set: simplify Created 3 years, 8 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/Source/core/loader/PingLoaderTest.cpp
diff --git a/third_party/WebKit/Source/core/loader/PingLoaderTest.cpp b/third_party/WebKit/Source/core/loader/PingLoaderTest.cpp
index 37b75ed0ce5bdf6945d13d8cd21c355ca4293367..0d3254e0e5147d8fcf465ef1c06440e22b2e3bd0 100644
--- a/third_party/WebKit/Source/core/loader/PingLoaderTest.cpp
+++ b/third_party/WebKit/Source/core/loader/PingLoaderTest.cpp
@@ -48,7 +48,7 @@ class PingLoaderTest : public ::testing::Test {
void SetDocumentURL(const KURL& url) {
FrameLoadRequest request(
- nullptr, url,
+ nullptr, ResourceRequest(url),
SubstituteData(SharedBuffer::Create(), "text/html", "UTF-8", KURL()));
page_holder_->GetFrame().Loader().Load(request);
blink::testing::RunPendingTasks();

Powered by Google App Engine
This is Rietveld 408576698