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

Unified Diff: webkit/glue/unittest_test_server.h

Issue 46026: Get rid of stashing a frame pointer with ResourceRequest and just store the r... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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
« no previous file with comments | « webkit/glue/resource_loader_bridge.h ('k') | webkit/glue/webframeloaderclient_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/unittest_test_server.h
===================================================================
--- webkit/glue/unittest_test_server.h (revision 11712)
+++ webkit/glue/unittest_test_server.h (working copy)
@@ -38,7 +38,7 @@
virtual bool MakeGETRequest(const std::string& page_name) {
GURL url(TestServerPage(page_name));
scoped_ptr<ResourceLoaderBridge> loader(
- ResourceLoaderBridge::Create(NULL, "GET",
+ ResourceLoaderBridge::Create("GET",
url,
url, // policy_url
GURL(), // no referrer
@@ -46,7 +46,8 @@
net::LOAD_NORMAL,
0,
ResourceType::SUB_RESOURCE,
- false));
+ false,
+ 0));
EXPECT_TRUE(loader.get());
ResourceLoaderBridge::SyncLoadResponse resp;
« no previous file with comments | « webkit/glue/resource_loader_bridge.h ('k') | webkit/glue/webframeloaderclient_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698