Chromium Code Reviews| Index: device/generic_sensor/mock_platform_sensor_provider.h |
| diff --git a/device/generic_sensor/mock_platform_sensor_provider.h b/device/generic_sensor/mock_platform_sensor_provider.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..35e361c9ffae4fd25ba9f42f086348b6076e3cd9 |
| --- /dev/null |
| +++ b/device/generic_sensor/mock_platform_sensor_provider.h |
| @@ -0,0 +1,31 @@ |
| +// Copyright 2016 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_GENERIC_SENSOR_MOCK_PLATFORM_SENSOR_PROVIDER_H_ |
| +#define DEVICE_GENERIC_SENSOR_MOCK_PLATFORM_SENSOR_PROVIDER_H_ |
| + |
| +#include "device/generic_sensor/platform_sensor_provider.h" |
| + |
| +namespace device { |
| + |
| +class MockPlatformSensorProvider : public PlatformSensorProvider { |
|
timvolodine
2016/09/13 19:38:53
I think we usually call these type of classes "fak
timvolodine
2016/09/13 19:38:53
also small "fake" test classes can be placed insid
maksims (do not use this acc)
2016/09/16 09:22:19
Good point, but these classes more or less resembl
timvolodine
2016/09/19 17:14:29
Why? Is there any reason it should be called a 'mo
maksims (do not use this acc)
2016/09/21 11:05:19
OK, I went through mock and fakes and it seems lik
|
| + public: |
| + MockPlatformSensorProvider(); |
| + ~MockPlatformSensorProvider() override; |
| + |
| + static MockPlatformSensorProvider* GetInstance(); |
| + |
| + protected: |
| + scoped_refptr<PlatformSensor> CreateSensorInternal( |
| + mojom::SensorType type, |
| + mojo::ScopedSharedBufferMapping mapping, |
| + uint64_t buffer_size) override; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(MockPlatformSensorProvider); |
| +}; |
| + |
| +} // namespace device |
| + |
| +#endif /* DEVICE_GENERIC_SENSOR_MOCK_PLATFORM_SENSOR_PROVIDER_H_ */ |
|
timvolodine
2016/09/13 19:38:53
//
maksims (do not use this acc)
2016/09/16 09:22:19
Done.
|