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

Unified Diff: webkit/support/webkit_support.h

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.cc ('k') | webkit/support/webkit_support.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/webkit_support.h
===================================================================
--- webkit/support/webkit_support.h (revision 50359)
+++ webkit/support/webkit_support.h (working copy)
@@ -10,6 +10,7 @@
#include "base/basictypes.h"
class Task;
+class WebURLLoaderMockFactory;
namespace WebKit {
class WebApplicationCacheHost;
class WebApplicationCacheHostClient;
@@ -21,6 +22,7 @@
class WebString;
class WebThemeEngine;
class WebURL;
+class WebURLResponse;
struct WebPluginParams;
}
@@ -35,11 +37,17 @@
// |unit_test_mode| should be set to true when running in a TestSuite, in which
// case no AtExitManager is created and ICU is not initialized (as it is already
// done by the TestSuite).
-// SetUpTestEnvironment() calls WebKit::initialize().
+// SetUpTestEnvironment() and SetUpTestEnvironmentForUnitTests() calls
+// WebKit::initialize().
// TearDownTestEnvironment() calls WebKit::shutdown().
-// TODO(jcivelli): remove the next method once DumpRenderTree.cpp is not using
-// it anymore upstream.
+// SetUpTestEnvironmentForUnitTests() should be used when running in a
+// TestSuite, in which case no AtExitManager is created and ICU is not
+// initialized (as it is already done by the TestSuite).
void SetUpTestEnvironment();
+void SetUpTestEnvironmentForUnitTests();
+// TODO(jcivelli): the method below is deprecated and should be removed when
+// DumpRenderTree has been modified to use the version with no
+// parameter.
void SetUpTestEnvironment(bool unit_test_mode);
void TearDownTestEnvironment();
@@ -63,6 +71,21 @@
// Returns the root directory of the WebKit code.
WebKit::WebString GetWebKitRootDir();
+// ------- URL load mocking.
+// Registers the file at |file_path| to be served when |url| is requested.
+// |response| is the response provided with the contents.
+void RegisterMockedURL(const WebKit::WebURL& url,
+ const WebKit::WebURLResponse& response,
+ const WebKit::WebString& file_path);
+
+// Unregisters URLs so they are no longer mocked.
+void UnregisterMockedURL(const WebKit::WebURL& url);
+void UnregisterAllMockedURLs();
+
+// Causes all pending asynchronous requests to be served. When this method
+// returns all the pending requests have been processed.
+void ServeAsynchronousMockedRequests();
+
// Wrappers to minimize dependecy.
// -------- Debugging
« no previous file with comments | « webkit/support/test_webkit_client.cc ('k') | webkit/support/webkit_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698