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

Unified Diff: webkit/tools/test_shell/test_shell_webkit_init.cc

Issue 15028002: Delete test_shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add dummy test_shell build target. Created 7 years, 7 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
Index: webkit/tools/test_shell/test_shell_webkit_init.cc
diff --git a/webkit/tools/test_shell/test_shell_webkit_init.cc b/webkit/tools/test_shell/test_shell_webkit_init.cc
deleted file mode 100644
index 2dcbb6c0f6cd5db7fffdd2de5aa7a9751d287821..0000000000000000000000000000000000000000
--- a/webkit/tools/test_shell/test_shell_webkit_init.cc
+++ /dev/null
@@ -1,292 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "webkit/tools/test_shell/test_shell_webkit_init.h"
-
-#include "base/metrics/stats_counters.h"
-#include "base/path_service.h"
-#include "media/base/media.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebDatabase.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h"
-#include "ui/gl/gl_bindings_skia_in_process.h"
-#include "v8/include/v8.h"
-#include "webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h"
-#include "webkit/plugins/npapi/plugin_list.h"
-#include "webkit/plugins/webplugininfo.h"
-#include "webkit/tools/test_shell/simple_socket_stream_bridge.h"
-#include "webkit/tools/test_shell/test_shell.h"
-
-#if defined(OS_WIN)
-#include "webkit/tools/test_shell/test_shell_webthemeengine.h"
-#endif
-
-TestShellWebKitInit::TestShellWebKitInit(bool layout_test_mode)
- : real_clipboard_(&clipboard_client_) {
- v8::V8::SetCounterFunction(base::StatsTable::FindLocation);
-
- WebKit::initialize(this);
- WebKit::setLayoutTestMode(layout_test_mode);
- WebKit::WebSecurityPolicy::registerURLSchemeAsLocal(
- WebKit::WebString::fromUTF8("test-shell-resource"));
- WebKit::WebSecurityPolicy::registerURLSchemeAsNoAccess(
- WebKit::WebString::fromUTF8("test-shell-resource"));
- WebKit::WebScriptController::enableV8SingleThreadMode();
- WebKit::WebRuntimeFeatures::enableApplicationCache(true);
- WebKit::WebRuntimeFeatures::enableDatabase(true);
- WebKit::WebRuntimeFeatures::enableNotifications(true);
- WebKit::WebRuntimeFeatures::enableTouch(true);
- WebKit::WebRuntimeFeatures::enableIndexedDatabase(true);
- WebKit::WebRuntimeFeatures::enableSpeechInput(true);
- WebKit::WebRuntimeFeatures::enableFileSystem(true);
-
- // TODO(hwennborg): Enable this once the implementation supports it.
- WebKit::WebRuntimeFeatures::enableDeviceMotion(false);
- WebKit::WebRuntimeFeatures::enableDeviceOrientation(true);
-
- // Enable experimental I18N API for testing.
- WebKit::WebRuntimeFeatures::enableJavaScriptI18NAPI(true);
-
- // Load libraries for media and enable the media player.
- base::FilePath module_path;
- WebKit::WebRuntimeFeatures::enableMediaPlayer(
- PathService::Get(base::DIR_MODULE, &module_path) &&
- media::InitializeMediaLibrary(module_path));
-
- WebKit::WebRuntimeFeatures::enableGeolocation(true);
-
- // Construct and initialize an appcache system for this scope.
- // A new empty temp directory is created to house any cached
- // content during the run. Upon exit that directory is deleted.
- // If we can't create a tempdir, we'll use in-memory storage.
- if (!appcache_dir_.CreateUniqueTempDir()) {
- LOG(WARNING) << "Failed to create a temp dir for the appcache, "
- "using in-memory storage.";
- DCHECK(appcache_dir_.path().empty());
- }
- SimpleAppCacheSystem::InitializeOnUIThread(appcache_dir_.path());
-
- WebKit::WebDatabase::setObserver(&database_system_);
-
- blob_registry_ = new TestShellWebBlobRegistryImpl();
-
- file_utilities_.set_sandbox_enabled(false);
-
- // Restrict the supported media types when running in layout test mode.
- if (layout_test_mode)
- mime_registry_.reset(new TestShellWebMimeRegistryImpl());
- else
- mime_registry_.reset(new webkit_glue::SimpleWebMimeRegistryImpl());
-
-#if defined(OS_WIN)
- // Ensure we pick up the default theme engine.
- SetThemeEngine(NULL);
-#endif
-}
-
-TestShellWebKitInit::~TestShellWebKitInit() {
- if (RunningOnValgrind())
- WebKit::WebCache::clear();
- WebKit::shutdown();
-}
-
-WebKit::WebMimeRegistry* TestShellWebKitInit::mimeRegistry() {
- return mime_registry_.get();
-}
-
-WebKit::WebClipboard* TestShellWebKitInit::clipboard() {
- // Mock out clipboard calls in layout test mode so that tests don't mess
- // with each other's copies/pastes when running in parallel.
- if (TestShell::layout_test_mode()) {
- return &mock_clipboard_;
- } else {
- return &real_clipboard_;
- }
-}
-
-WebKit::WebFileUtilities* TestShellWebKitInit::fileUtilities() {
- return &file_utilities_;
-}
-
-WebKit::WebSandboxSupport* TestShellWebKitInit::sandboxSupport() {
- return NULL;
-}
-
-WebKit::WebCookieJar* TestShellWebKitInit::cookieJar() {
- return &cookie_jar_;
-}
-
-WebKit::WebBlobRegistry* TestShellWebKitInit::blobRegistry() {
- return blob_registry_.get();
-}
-
-WebKit::WebFileSystem* TestShellWebKitInit::fileSystem() {
- return &file_system_;
-}
-
-bool TestShellWebKitInit::sandboxEnabled() {
- return true;
-}
-
-WebKit::Platform::FileHandle
-TestShellWebKitInit::databaseOpenFile(
- const WebKit::WebString& vfs_file_name, int desired_flags) {
- return SimpleDatabaseSystem::GetInstance()->OpenFile(
- vfs_file_name, desired_flags);
-}
-
-int TestShellWebKitInit::databaseDeleteFile(
- const WebKit::WebString& vfs_file_name,
- bool sync_dir) {
- return SimpleDatabaseSystem::GetInstance()->DeleteFile(
- vfs_file_name, sync_dir);
-}
-
-long TestShellWebKitInit::databaseGetFileAttributes(
- const WebKit::WebString& vfs_file_name) {
- return SimpleDatabaseSystem::GetInstance()->GetFileAttributes(
- vfs_file_name);
-}
-
-long long TestShellWebKitInit::databaseGetFileSize(
- const WebKit::WebString& vfs_file_name) {
- return SimpleDatabaseSystem::GetInstance()->GetFileSize(vfs_file_name);
-}
-
-long long TestShellWebKitInit::databaseGetSpaceAvailableForOrigin(
- const WebKit::WebString& origin_identifier) {
- return SimpleDatabaseSystem::GetInstance()->GetSpaceAvailable(
- origin_identifier);
-}
-
-unsigned long long TestShellWebKitInit::visitedLinkHash(
- const char* canonicalURL,
- size_t length) {
- return 0;
-}
-
-bool TestShellWebKitInit::isLinkVisited(unsigned long long linkHash) {
- return false;
-}
-
-WebKit::WebMessagePortChannel* TestShellWebKitInit::createMessagePortChannel() {
- return NULL;
-}
-
-void TestShellWebKitInit::prefetchHostName(const WebKit::WebString&) {
-}
-
-WebKit::WebData TestShellWebKitInit::loadResource(const char* name) {
- if (!strcmp(name, "deleteButton")) {
- // Create a red 30x30 square.
- const char red_square[] =
- "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52"
- "\x00\x00\x00\x1e\x00\x00\x00\x1e\x04\x03\x00\x00\x00\xc9\x1e\xb3"
- "\x91\x00\x00\x00\x30\x50\x4c\x54\x45\x00\x00\x00\x80\x00\x00\x00"
- "\x80\x00\x80\x80\x00\x00\x00\x80\x80\x00\x80\x00\x80\x80\x80\x80"
- "\x80\xc0\xc0\xc0\xff\x00\x00\x00\xff\x00\xff\xff\x00\x00\x00\xff"
- "\xff\x00\xff\x00\xff\xff\xff\xff\xff\x7b\x1f\xb1\xc4\x00\x00\x00"
- "\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a"
- "\x9c\x18\x00\x00\x00\x17\x49\x44\x41\x54\x78\x01\x63\x98\x89\x0a"
- "\x18\x50\xb9\x33\x47\xf9\xa8\x01\x32\xd4\xc2\x03\x00\x33\x84\x0d"
- "\x02\x3a\x91\xeb\xa5\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60"
- "\x82";
- return WebKit::WebData(red_square, arraysize(red_square));
- }
- return webkit_glue::WebKitPlatformSupportImpl::loadResource(name);
-}
-
-WebKit::WebString TestShellWebKitInit::queryLocalizedString(
- WebKit::WebLocalizedString::Name name) {
- switch (name) {
- case WebKit::WebLocalizedString::ValidationValueMissing:
- case WebKit::WebLocalizedString::ValidationValueMissingForCheckbox:
- case WebKit::WebLocalizedString::ValidationValueMissingForFile:
- case WebKit::WebLocalizedString::ValidationValueMissingForMultipleFile:
- case WebKit::WebLocalizedString::ValidationValueMissingForRadio:
- case WebKit::WebLocalizedString::ValidationValueMissingForSelect:
- return ASCIIToUTF16("value missing");
- case WebKit::WebLocalizedString::ValidationTypeMismatch:
- case WebKit::WebLocalizedString::ValidationTypeMismatchForEmail:
- case WebKit::WebLocalizedString::ValidationTypeMismatchForMultipleEmail:
- case WebKit::WebLocalizedString::ValidationTypeMismatchForURL:
- return ASCIIToUTF16("type mismatch");
- case WebKit::WebLocalizedString::ValidationPatternMismatch:
- return ASCIIToUTF16("pattern mismatch");
- case WebKit::WebLocalizedString::ValidationTooLong:
- return ASCIIToUTF16("too long");
- case WebKit::WebLocalizedString::ValidationRangeUnderflow:
- return ASCIIToUTF16("range underflow");
- case WebKit::WebLocalizedString::ValidationRangeOverflow:
- return ASCIIToUTF16("range overflow");
- case WebKit::WebLocalizedString::ValidationStepMismatch:
- return ASCIIToUTF16("step mismatch");
- default:
- return WebKitPlatformSupportImpl::queryLocalizedString(name);
- }
-}
-
-WebKit::WebString TestShellWebKitInit::queryLocalizedString(
- WebKit::WebLocalizedString::Name name, const WebKit::WebString& value) {
- if (name == WebKit::WebLocalizedString::ValidationRangeUnderflow)
- return ASCIIToUTF16("range underflow");
- if (name == WebKit::WebLocalizedString::ValidationRangeOverflow)
- return ASCIIToUTF16("range overflow");
- return WebKitPlatformSupportImpl::queryLocalizedString(name, value);
-}
-
-WebKit::WebString TestShellWebKitInit::queryLocalizedString(
- WebKit::WebLocalizedString::Name name,
- const WebKit::WebString& value1,
- const WebKit::WebString& value2) {
- if (name == WebKit::WebLocalizedString::ValidationTooLong)
- return ASCIIToUTF16("too long");
- if (name == WebKit::WebLocalizedString::ValidationStepMismatch)
- return ASCIIToUTF16("step mismatch");
- return WebKitPlatformSupportImpl::queryLocalizedString(name, value1, value2);
-}
-
-WebKit::WebString TestShellWebKitInit::defaultLocale() {
- return ASCIIToUTF16("en-US");
-}
-
-WebKit::WebStorageNamespace* TestShellWebKitInit::createLocalStorageNamespace(
- const WebKit::WebString& path, unsigned quota) {
- return dom_storage_system_.CreateLocalStorageNamespace();
-}
-
-WebKit::WebIDBFactory* TestShellWebKitInit::idbFactory() {
- return WebKit::WebIDBFactory::create();
-}
-
-WebKit::WebGraphicsContext3D*
-TestShellWebKitInit::createOffscreenGraphicsContext3D(
- const WebKit::WebGraphicsContext3D::Attributes& attributes) {
- using webkit::gpu::WebGraphicsContext3DInProcessCommandBufferImpl;
- return WebGraphicsContext3DInProcessCommandBufferImpl::CreateOffscreenContext(
- attributes);
-}
-
-void TestShellWebKitInit::GetPlugins(
- bool refresh, std::vector<webkit::WebPluginInfo>* plugins) {
- if (refresh)
- webkit::npapi::PluginList::Singleton()->RefreshPlugins();
- webkit::npapi::PluginList::Singleton()->GetPlugins(plugins);
-}
-
-webkit_glue::ResourceLoaderBridge*
-TestShellWebKitInit::CreateResourceLoader(
- const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info) {
- return SimpleResourceLoaderBridge::Create(request_info);
-}
-
-webkit_glue::WebSocketStreamHandleBridge*
-TestShellWebKitInit::CreateWebSocketBridge(
- WebKit::WebSocketStreamHandle* handle,
- webkit_glue::WebSocketStreamHandleDelegate* delegate) {
- return SimpleSocketStreamBridge::Create(handle, delegate);
-}

Powered by Google App Engine
This is Rietveld 408576698