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

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

Issue 2574013003: Refactor ArcSessionRunner part 1. (Closed)
Patch Set: rebase to the split CL Created 4 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
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
deleted file mode 100644
index 971ccd902eb8590e71ddbfb77b0f08021f75082d..0000000000000000000000000000000000000000
--- a/components/arc/test/fake_arc_bridge_service.h
+++ /dev/null
@@ -1,35 +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.
-
-#ifndef COMPONENTS_ARC_TEST_FAKE_ARC_BRIDGE_SERVICE_H_
-#define COMPONENTS_ARC_TEST_FAKE_ARC_BRIDGE_SERVICE_H_
-
-#include <string>
-#include <vector>
-
-#include "base/macros.h"
-#include "components/arc/arc_bridge_service.h"
-
-namespace arc {
-
-class FakeArcBridgeService : public ArcBridgeService {
- public:
- FakeArcBridgeService();
- ~FakeArcBridgeService() override;
-
- // ArcBridgeService overrides:
- void RequestStart() override;
- void RequestStop() override;
- void OnShutdown() override;
-
- private:
- void SetReady();
- void SetStopped();
-
- DISALLOW_COPY_AND_ASSIGN(FakeArcBridgeService);
-};
-
-} // namespace arc
-
-#endif // COMPONENTS_ARC_TEST_FAKE_ARC_BRIDGE_SERVICE_H_

Powered by Google App Engine
This is Rietveld 408576698