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

Unified Diff: webkit/support/test_webkit_platform_support.cc

Issue 17476002: delete webkit/support/simple_xxx's (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android Created 7 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_platform_support.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_platform_support.cc
diff --git a/webkit/support/test_webkit_platform_support.cc b/webkit/support/test_webkit_platform_support.cc
index 016661dfe4834af039f21e4351d13cb4ff679d9d..39d8f6535257e71a84dd747d564306793094fc1b 100644
--- a/webkit/support/test_webkit_platform_support.cc
+++ b/webkit/support/test_webkit_platform_support.cc
@@ -13,7 +13,6 @@
#include "cc/output/context_provider.h"
#include "media/base/media.h"
#include "net/cookies/cookie_monster.h"
-#include "net/http/http_cache.h"
#include "net/test/spawned_test_server/spawned_test_server.h"
#include "third_party/WebKit/public/web/WebDatabase.h"
#include "third_party/WebKit/public/web/WebKit.h"
@@ -42,13 +41,6 @@
#include "webkit/renderer/compositor_bindings/web_compositor_support_impl.h"
#include "webkit/support/gc_extension.h"
#include "webkit/support/mock_webclipboard_impl.h"
-#include "webkit/support/simple_appcache_system.h"
-#include "webkit/support/simple_database_system.h"
-#include "webkit/support/simple_file_system.h"
-#include "webkit/support/simple_resource_loader_bridge.h"
-#include "webkit/support/simple_socket_stream_bridge.h"
-#include "webkit/support/simple_webcookiejar_impl.h"
-#include "webkit/support/test_shell_request_context.h"
#include "webkit/support/test_shell_webblobregistry_impl.h"
#include "webkit/support/test_webmessageportchannel.h"
#include "webkit/support/web_audio_device_mock.h"
@@ -113,9 +105,6 @@ TestWebKitPlatformSupport::TestWebKitPlatformSupport() {
"using in-memory storage.";
DCHECK(appcache_dir_.path().empty());
}
- SimpleAppCacheSystem::InitializeOnUIThread(appcache_dir_.path());
-
- WebKit::WebDatabase::setObserver(&database_system_);
blob_registry_ = new TestShellWebBlobRegistryImpl();
@@ -143,13 +132,8 @@ TestWebKitPlatformSupport::TestWebKitPlatformSupport() {
SetThemeEngine(NULL);
#endif
- net::HttpCache::Mode cache_mode = net::HttpCache::NORMAL;
net::CookieMonster::EnableFileScheme();
- // Initializing with a default context, which means no on-disk cookie DB,
- // and no support for directory listings.
- SimpleResourceLoaderBridge::Init(base::FilePath(), cache_mode, true);
-
// Test shell always exposes the GC.
webkit_glue::SetJavaScriptFlags(" --expose-gc");
// Expose GCController to JavaScript.
@@ -177,18 +161,10 @@ WebKit::WebSandboxSupport* TestWebKitPlatformSupport::sandboxSupport() {
return NULL;
}
-WebKit::WebCookieJar* TestWebKitPlatformSupport::cookieJar() {
- return &cookie_jar_;
-}
-
WebKit::WebBlobRegistry* TestWebKitPlatformSupport::blobRegistry() {
return blob_registry_.get();
}
-WebKit::WebFileSystem* TestWebKitPlatformSupport::fileSystem() {
- return &file_system_;
-}
-
WebKit::WebHyphenator* TestWebKitPlatformSupport::hyphenator() {
return &hyphenator_;
}
@@ -203,36 +179,6 @@ bool TestWebKitPlatformSupport::sandboxEnabled() {
return true;
}
-WebKit::Platform::FileHandle
-TestWebKitPlatformSupport::databaseOpenFile(
- const WebKit::WebString& vfs_file_name, int desired_flags) {
- return SimpleDatabaseSystem::GetInstance()->OpenFile(
- vfs_file_name, desired_flags);
-}
-
-int TestWebKitPlatformSupport::databaseDeleteFile(
- const WebKit::WebString& vfs_file_name, bool sync_dir) {
- return SimpleDatabaseSystem::GetInstance()->DeleteFile(
- vfs_file_name, sync_dir);
-}
-
-long TestWebKitPlatformSupport::databaseGetFileAttributes(
- const WebKit::WebString& vfs_file_name) {
- return SimpleDatabaseSystem::GetInstance()->GetFileAttributes(
- vfs_file_name);
-}
-
-long long TestWebKitPlatformSupport::databaseGetFileSize(
- const WebKit::WebString& vfs_file_name) {
- return SimpleDatabaseSystem::GetInstance()->GetFileSize(vfs_file_name);
-}
-
-long long TestWebKitPlatformSupport::databaseGetSpaceAvailableForOrigin(
- const WebKit::WebString& origin_identifier) {
- return SimpleDatabaseSystem::GetInstance()->GetSpaceAvailable(
- origin_identifier.utf8());
-}
-
unsigned long long TestWebKitPlatformSupport::visitedLinkHash(
const char* canonicalURL, size_t length) {
return 0;
@@ -324,12 +270,6 @@ WebKit::WebString TestWebKitPlatformSupport::defaultLocale() {
return ASCIIToUTF16("en-US");
}
-WebKit::WebStorageNamespace*
-TestWebKitPlatformSupport::createLocalStorageNamespace(
- const WebKit::WebString& path, unsigned quota) {
- return dom_storage_system_.CreateLocalStorageNamespace();
-}
-
#if defined(OS_WIN) || defined(OS_MACOSX)
void TestWebKitPlatformSupport::SetThemeEngine(WebKit::WebThemeEngine* engine) {
active_theme_engine_ = engine ?
@@ -425,14 +365,16 @@ void TestWebKitPlatformSupport::GetPlugins(
webkit_glue::ResourceLoaderBridge*
TestWebKitPlatformSupport::CreateResourceLoader(
const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info) {
- return SimpleResourceLoaderBridge::Create(request_info);
+ NOTREACHED();
+ return NULL;
}
webkit_glue::WebSocketStreamHandleBridge*
TestWebKitPlatformSupport::CreateWebSocketBridge(
WebKit::WebSocketStreamHandle* handle,
webkit_glue::WebSocketStreamHandleDelegate* delegate) {
- return SimpleSocketStreamBridge::Create(handle, delegate);
+ NOTREACHED();
+ return NULL;
}
WebKit::WebMediaStreamCenter*
« no previous file with comments | « webkit/support/test_webkit_platform_support.h ('k') | webkit/support/webkit_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698