| 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() {}
|
|
|