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

Unified Diff: chromeos/dbus/fake_arc_bridge_client.h

Issue 1413153007: arc-app-launcher: Minimal support for ARC app launcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/fake_arc_bridge_client.h
diff --git a/chromeos/dbus/fake_arc_bridge_client.h b/chromeos/dbus/fake_arc_bridge_client.h
index eb41b5084499a716ae034aa87fc56f132dad1f77..ed4f7ccc81be288ec468f7bbb9ca0932aa075002 100644
--- a/chromeos/dbus/fake_arc_bridge_client.h
+++ b/chromeos/dbus/fake_arc_bridge_client.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROMEOS_FAKE_ARC_BRIDGE_CLIENT_CLIENT_H_
-#define CHROMEOS_FAKE_ARC_BRIDGE_CLIENT_CLIENT_H_
+#ifndef CHROMEOS_DBUS_FAKE_ARC_BRIDGE_CLIENT_H_
+#define CHROMEOS_DBUS_FAKE_ARC_BRIDGE_CLIENT_H_
#include "base/basictypes.h"
#include "chromeos/chromeos_export.h"
@@ -23,6 +23,11 @@ class CHROMEOS_EXPORT FakeArcBridgeClient : public ArcBridgeClient {
// ArcBridgeClient overrides:
void Ping(const VoidDBusMethodCallback& callback) override;
+ void Refresh() override;
+ void LaunchApp(const std::string& package,
+ const std::string& activity) override;
+ void AddAppObserver(AppObserver* observer) override;
+ void RemoveAppObserver(AppObserver* observer) override;
private:
DISALLOW_COPY_AND_ASSIGN(FakeArcBridgeClient);
@@ -30,4 +35,4 @@ class CHROMEOS_EXPORT FakeArcBridgeClient : public ArcBridgeClient {
} // namespace chromeos
-#endif // CHROMEOS_FAKE_ARC_BRIDGE_CLIENT_CLIENT_H_
+#endif // CHROMEOS_DBUS_FAKE_ARC_BRIDGE_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698