Index: webkit/tools/test_shell/test_shell_webkit_init.h |
=================================================================== |
--- webkit/tools/test_shell/test_shell_webkit_init.h (revision 57912) |
+++ webkit/tools/test_shell/test_shell_webkit_init.h (working copy) |
@@ -18,6 +18,7 @@ |
#include "webkit/tools/test_shell/simple_database_system.h" |
#include "webkit/tools/test_shell/simple_resource_loader_bridge.h" |
#include "webkit/tools/test_shell/simple_webcookiejar_impl.h" |
+#include "webkit/tools/test_shell/test_shell_webblobregistry_impl.h" |
#include "webkit/tools/test_shell/test_shell_webmimeregistry_impl.h" |
#if defined(OS_WIN) |
@@ -47,6 +48,10 @@ |
return &cookie_jar_; |
} |
+ virtual WebKit::WebBlobRegistry* blobRegistry() { |
+ return web_blob_registry_.get(); |
+ } |
+ |
virtual bool sandboxEnabled() { |
return true; |
} |
@@ -141,6 +146,7 @@ |
SimpleAppCacheSystem appcache_system_; |
SimpleDatabaseSystem database_system_; |
SimpleWebCookieJarImpl cookie_jar_; |
+ scoped_refptr<TestShellWebBlobRegistryImpl> web_blob_registry_; |
michaeln
2010/08/31 01:27:22
just blob_registry_ no need for the "web" prefix
|
#if defined(OS_WIN) |
WebKit::WebThemeEngine* active_theme_engine_; |