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

Unified Diff: components/arc/test/fake_arc_bridge_service.h

Issue 1523643002: arc-bridge: Move most methods to Mojo interfaces (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Rebased to ToT Created 5 years 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 | « components/arc/test/fake_arc_bridge_instance.cc ('k') | components/arc/test/fake_arc_bridge_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/test/fake_arc_bridge_service.h
diff --git a/components/arc/test/fake_arc_bridge_service.h b/components/arc/test/fake_arc_bridge_service.h
index 0d2bb07e880c19320fc4c01dbd5c8bd9fd814feb..9598be602e8f523dec0c108c799673b665c1fdc2 100644
--- a/components/arc/test/fake_arc_bridge_service.h
+++ b/components/arc/test/fake_arc_bridge_service.h
@@ -9,58 +9,12 @@
#include <vector>
#include "base/macros.h"
-#include "base/memory/scoped_vector.h"
#include "components/arc/arc_bridge_service.h"
namespace arc {
class FakeArcBridgeService : public ArcBridgeService {
public:
- class Request {
- public:
- Request(const std::string& package, const std::string& activity)
- : package_(package),
- activity_(activity) {
- }
-
- ~Request() {
- }
-
- const std::string& package() const { return package_; }
-
- const std::string& activity() const { return activity_; }
-
- bool IsForApp(const AppInfo& app_info) const {
- return package_ == app_info.package && activity_ == app_info.activity;
- }
-
- private:
- std::string package_;
- std::string activity_;
-
- DISALLOW_COPY_AND_ASSIGN(Request);
- };
-
- class IconRequest : public Request {
- public:
- IconRequest(const std::string& package,
- const std::string& activity,
- ScaleFactor scale_factor)
- : Request(package, activity),
- scale_factor_(scale_factor) {
- }
-
- ~IconRequest() {
- }
-
- int scale_factor() const { return scale_factor_; }
-
- private:
- int scale_factor_;
-
- DISALLOW_COPY_AND_ASSIGN(IconRequest);
- };
-
FakeArcBridgeService();
~FakeArcBridgeService() override;
@@ -68,54 +22,14 @@ class FakeArcBridgeService : public ArcBridgeService {
void DetectAvailability() override;
void HandleStartup() override;
void Shutdown() override;
- bool RegisterInputDevice(const std::string& name,
- const std::string& device_type,
- base::ScopedFD fd) override;
- bool SendBroadcast(const std::string& action,
- const std::string& package,
- const std::string& clazz,
- const base::DictionaryValue& extras) override;
- bool RefreshAppList() override;
- bool LaunchApp(const std::string& package,
- const std::string& activity) override;
- bool RequestAppIcon(const std::string& package,
- const std::string& activity,
- ScaleFactor scale_factor) override;
- bool SendNotificationEventToAndroid(const std::string& key,
- ArcNotificationEvent event) override;
- bool RequestProcessList() override;
-
- int refresh_app_list_count() const { return refresh_app_list_count_; }
-
- const ScopedVector<Request>& launch_requests() const {
- return launch_requests_;
- }
-
- const ScopedVector<IconRequest>& icon_requests() const {
- return icon_requests_;
- }
void SetReady();
void SetStopped();
bool HasObserver(const Observer* observer);
- bool HasAppObserver(const AppObserver* observer);
-
- void SendRefreshAppList(const std::vector<AppInfo>& apps);
-
- bool GenerateAndSendIcon(const AppInfo& app,
- ScaleFactor scale_factor,
- std::string* png_data);
private:
- // Number of RefreshAppList calls.
- int refresh_app_list_count_ = 0;
- // Keeps information about launch requests.
- ScopedVector<Request> launch_requests_;
- // Keeps information about icon load requests.
- ScopedVector<IconRequest> icon_requests_;
-
DISALLOW_COPY_AND_ASSIGN(FakeArcBridgeService);
};
« no previous file with comments | « components/arc/test/fake_arc_bridge_instance.cc ('k') | components/arc/test/fake_arc_bridge_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698