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

Unified Diff: chromeos/dbus/fake_arc_bridge_client.cc

Issue 1421023002: Remove the ARC Bridge Service (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Removing the service instead of renaming it Created 5 years, 1 month 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 | « chromeos/dbus/fake_arc_bridge_client.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chromeos/dbus/fake_arc_bridge_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698