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

Unified Diff: webkit/support/test_webkit_client.cc

Issue 2749020: Adding a way to mock WebURLLoader in webkit_support.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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/support/test_webkit_client.h ('k') | webkit/support/webkit_support.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/test_webkit_client.cc
===================================================================
--- webkit/support/test_webkit_client.cc (revision 50359)
+++ webkit/support/test_webkit_client.cc (working copy)
@@ -34,6 +34,7 @@
#include "webkit/glue/webkit_glue.h"
#include "webkit/glue/webkitclient_impl.h"
#include "webkit/support/test_webkit_client.h"
+#include "webkit/support/weburl_loader_mock_factory.h"
#include "webkit/tools/test_shell/mock_webclipboard_impl.h"
#include "webkit/tools/test_shell/simple_appcache_system.h"
#include "webkit/tools/test_shell/simple_database_system.h"
@@ -51,7 +52,7 @@
using WebKit::WebScriptController;
-TestWebKitClient::TestWebKitClient() : url_loader_factory_(NULL) {
+TestWebKitClient::TestWebKitClient() {
v8::V8::SetCounterFunction(StatsTable::FindLocation);
WebKit::initialize(this);
@@ -193,9 +194,8 @@
}
WebKit::WebURLLoader* TestWebKitClient::createURLLoader() {
- if (url_loader_factory_)
- return url_loader_factory_->createURLLoader();
- return webkit_glue::WebKitClientImpl::createURLLoader();
+ return url_loader_factory_.CreateURLLoader(
+ webkit_glue::WebKitClientImpl::createURLLoader());
}
WebKit::WebData TestWebKitClient::loadResource(const char* name) {
« no previous file with comments | « webkit/support/test_webkit_client.h ('k') | webkit/support/webkit_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698