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

Unified Diff: chromeos/dbus/arc_bridge_client.h

Issue 1421023002: Remove the ARC Bridge Service (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Removed the bool callback for StartInstance Created 5 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
Index: chromeos/dbus/arc_bridge_client.h
diff --git a/chromeos/dbus/arc_bridge_client.h b/chromeos/dbus/arc_bridge_client.h
deleted file mode 100644
index 11d568dd359ff47fffdbce8f4181d787de5adfc4..0000000000000000000000000000000000000000
--- a/chromeos/dbus/arc_bridge_client.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 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.
-
-#ifndef CHROMEOS_ARC_BRIDGE_CLIENT_H_
-#define CHROMEOS_ARC_BRIDGE_CLIENT_H_
-
-#include "base/basictypes.h"
-#include "chromeos/chromeos_export.h"
-#include "chromeos/dbus/dbus_client.h"
-#include "chromeos/dbus/dbus_method_call_status.h"
-
-namespace dbus {
-class ObjectPath;
-}
-
-namespace chromeos {
-
-// Client for the Arc Bridge Service
satorux1 2015/10/27 07:21:28 could you add some description about the ARC bridg
-class CHROMEOS_EXPORT ArcBridgeClient : public DBusClient {
- public:
- ~ArcBridgeClient() override;
-
- // Factory function, creates a new instance and returns ownership.
- // For normal usage, access the singleton via DBusThreadManager::Get().
- static ArcBridgeClient* Create();
-
- // Calls Ping method. |callback| is called after the method call succeeds.
- virtual void Ping(const VoidDBusMethodCallback& callback) = 0;
-
- protected:
- // Create() should be used instead.
- ArcBridgeClient();
-
- private:
- DISALLOW_COPY_AND_ASSIGN(ArcBridgeClient);
-};
-
-} // namespace chromeos
-
-#endif // CHROMEOS_ARC_BRIDGE_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698