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

Unified Diff: webkit/tools/test_shell/test_web_worker.h

Issue 1729015: Ground work for making appcache work in workers.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « chrome/worker/webworkerclient_proxy.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/test_web_worker.h
===================================================================
--- webkit/tools/test_shell/test_web_worker.h (revision 45253)
+++ webkit/tools/test_shell/test_web_worker.h (working copy)
@@ -12,11 +12,15 @@
#include "third_party/WebKit/WebKit/chromium/public/WebWorkerClient.h"
namespace WebKit {
+class WebApplicationCacheHost;
+class WebApplicationCacheHostClient;
class WebNotificationPresenter;
class WebString;
class WebURL;
}
+// WebWorkers are not functional in test_shell. This class effectively
+// stubs things out.
class TestWebWorker : public WebKit::WebWorker,
public WebKit::WebWorkerClient,
public base::RefCounted<TestWebWorker> {
@@ -74,6 +78,10 @@
virtual WebKit::WebNotificationPresenter* notificationPresenter() {
return NULL;
}
+ virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(
+ WebKit::WebApplicationCacheHostClient*) {
+ return NULL;
+ }
private:
friend class base::RefCounted<TestWebWorker>;
« no previous file with comments | « chrome/worker/webworkerclient_proxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698