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

Unified Diff: content/child/web_url_loader_impl_unittest.cc

Issue 519333002: Move resource_loader_bridge.* from webkit/child to content/child. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sort + REBASE Created 6 years, 3 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 | « content/child/web_url_loader_impl.cc ('k') | content/common/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/web_url_loader_impl_unittest.cc
diff --git a/content/child/web_url_loader_impl_unittest.cc b/content/child/web_url_loader_impl_unittest.cc
index a8a23593e6f010b494171fd5db5c62d233575c27..61dd49d8518b8369edb65f4913b67c5c8d71951f 100644
--- a/content/child/web_url_loader_impl_unittest.cc
+++ b/content/child/web_url_loader_impl_unittest.cc
@@ -11,6 +11,7 @@
#include "base/message_loop/message_loop.h"
#include "base/time/time.h"
#include "content/child/resource_dispatcher.h"
+#include "content/child/resource_loader_bridge.h"
#include "content/public/child/request_peer.h"
#include "content/public/common/resource_response_info.h"
#include "net/base/net_errors.h"
@@ -23,7 +24,6 @@
#include "third_party/WebKit/public/platform/WebURLLoaderClient.h"
#include "third_party/WebKit/public/platform/WebURLRequest.h"
#include "url/gurl.h"
-#include "webkit/child/resource_loader_bridge.h"
namespace content {
namespace {
@@ -54,7 +54,7 @@ const char kMultipartResponse[] =
"Content-type: text/html\n\n"
"ah!";
-class TestBridge : public webkit_glue::ResourceLoaderBridge,
+class TestBridge : public ResourceLoaderBridge,
public base::SupportsWeakPtr<TestBridge> {
public:
TestBridge() : peer_(NULL), canceled_(false) {}
@@ -104,7 +104,7 @@ class TestResourceDispatcher : public ResourceDispatcher {
virtual ~TestResourceDispatcher() {}
// ResourceDispatcher implementation:
- virtual webkit_glue::ResourceLoaderBridge* CreateBridge(
+ virtual ResourceLoaderBridge* CreateBridge(
const RequestInfo& request_info) OVERRIDE {
EXPECT_FALSE(bridge_.get());
TestBridge* bridge = new TestBridge();
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | content/common/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698