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

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

Issue 8416029: Removing dedicated worker-related IPC code (second round). (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Style nit Created 9 years, 2 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/tools/test_shell/test_web_worker.h ('k') | webkit/tools/test_shell/test_webview_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/test_web_worker.cc
diff --git a/webkit/tools/test_shell/test_web_worker.cc b/webkit/tools/test_shell/test_web_worker.cc
deleted file mode 100644
index 3f064c0e063dc39d8a876a6eb9194a853c0f47e9..0000000000000000000000000000000000000000
--- a/webkit/tools/test_shell/test_web_worker.cc
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2011 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_web_worker.h"
-
-TestWebWorker::TestWebWorker() {
- AddRef(); // Adds the reference held for worker object.
- AddRef(); // Adds the reference held for worker context object.
-}
-
-void TestWebWorker::workerObjectDestroyed() {
- Release(); // Releases the reference held for worker object.
-}
-
-void TestWebWorker::workerContextDestroyed() {
- Release(); // Releases the reference held for worker context object.
-}
-
-WebKit::WebWorker* TestWebWorker::createWorker(
- WebKit::WebWorkerClient* client) {
- return NULL;
-}
-
-WebKit::WebNotificationPresenter* TestWebWorker::notificationPresenter() {
- return NULL;
-}
-
-WebKit::WebApplicationCacheHost* TestWebWorker::createApplicationCacheHost(
- WebKit::WebApplicationCacheHostClient*) {
- return NULL;
-}
-
-bool TestWebWorker::allowDatabase(WebKit::WebFrame* frame,
- const WebKit::WebString& name,
- const WebKit::WebString& display_name,
- unsigned long estimated_size) {
- return true;
-}
-
-TestWebWorker::~TestWebWorker() {}
« no previous file with comments | « webkit/tools/test_shell/test_web_worker.h ('k') | webkit/tools/test_shell/test_webview_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698