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

Unified Diff: device/core/mock_device_client.h

Issue 2417043002: Move device/core files to device/base directory. (Closed)
Patch Set: Fix ChromeOS build Created 4 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
« no previous file with comments | « device/core/device_monitor_win.cc ('k') | device/core/mock_device_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/core/mock_device_client.h
diff --git a/device/core/mock_device_client.h b/device/core/mock_device_client.h
deleted file mode 100644
index 810b8ff168a758cfd804de6a61efcfcb658bc921..0000000000000000000000000000000000000000
--- a/device/core/mock_device_client.h
+++ /dev/null
@@ -1,39 +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 DEVICE_CORE_MOCK_DEVICE_CLIENT_H_
-#define DEVICE_CORE_MOCK_DEVICE_CLIENT_H_
-
-#include <memory>
-
-#include "device/core/device_client.h"
-
-namespace device {
-
-class HidService;
-class MockHidService;
-class MockUsbService;
-class UsbService;
-
-class MockDeviceClient : device::DeviceClient {
- public:
- MockDeviceClient();
- ~MockDeviceClient() override;
-
- // device::DeviceClient implementation:
- UsbService* GetUsbService() override;
- HidService* GetHidService() override;
-
- // Accessors for the mock instances.
- MockHidService* hid_service();
- MockUsbService* usb_service();
-
- private:
- std::unique_ptr<MockHidService> hid_service_;
- std::unique_ptr<MockUsbService> usb_service_;
-};
-
-} // namespace device
-
-#endif // DEVICE_CORE_MOCK_DEVICE_CLIENT_H_
« no previous file with comments | « device/core/device_monitor_win.cc ('k') | device/core/mock_device_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698