Index: content/browser/devtools/protocol/worker_handler.cc |
diff --git a/content/browser/devtools/protocol/worker_handler.cc b/content/browser/devtools/protocol/worker_handler.cc |
deleted file mode 100644 |
index fd8fc09a2532b797d067ca7b5353e57336573f07..0000000000000000000000000000000000000000 |
--- a/content/browser/devtools/protocol/worker_handler.cc |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-// Copyright 2014 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 "content/browser/devtools/protocol/worker_handler.h" |
- |
-namespace content { |
-namespace devtools { |
-namespace worker { |
- |
-typedef DevToolsProtocolClient::Response Response; |
-typedef DevToolsProtocolClient::ResponseStatus ResponseStatus; |
- |
-WorkerHandler::WorkerHandler() { |
-} |
- |
-WorkerHandler::~WorkerHandler() { |
-} |
- |
-void WorkerHandler::SetClient(scoped_ptr<Client> client) { |
- client_.swap(client); |
-} |
- |
-Response WorkerHandler::DisconnectFromWorker(int worker_id) { |
- return Response::FallThrough(); |
-} |
- |
-} // namespace worker |
-} // namespace devtools |
-} // namespace content |