Index: chromeos/dbus/fake_arc_bridge_client.cc |
diff --git a/chromeos/dbus/fake_arc_bridge_client.cc b/chromeos/dbus/fake_arc_bridge_client.cc |
deleted file mode 100644 |
index d14df0ea08492e8aeccd7c9ee75a132a28778295..0000000000000000000000000000000000000000 |
--- a/chromeos/dbus/fake_arc_bridge_client.cc |
+++ /dev/null |
@@ -1,36 +0,0 @@ |
-// Copyright 2015 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 "chromeos/dbus/fake_arc_bridge_client.h" |
- |
-#include "base/bind.h" |
-#include "base/location.h" |
-#include "base/single_thread_task_runner.h" |
-#include "base/thread_task_runner_handle.h" |
- |
-namespace chromeos { |
- |
-namespace { |
- |
-void OnVoidDBusMethod(const VoidDBusMethodCallback& callback) { |
- callback.Run(DBUS_METHOD_CALL_SUCCESS); |
-} |
- |
-} // anonymous namespace |
- |
-FakeArcBridgeClient::FakeArcBridgeClient() { |
-} |
- |
-FakeArcBridgeClient::~FakeArcBridgeClient() { |
-} |
- |
-void FakeArcBridgeClient::Init(dbus::Bus* bus) { |
-} |
- |
-void FakeArcBridgeClient::Ping(const VoidDBusMethodCallback& callback) { |
- base::ThreadTaskRunnerHandle::Get()->PostTask( |
- FROM_HERE, base::Bind(&OnVoidDBusMethod, callback)); |
-} |
- |
-} // namespace chromeos |