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

Side by Side Diff: device/generic_sensor/fake_platform_sensor_provider.cc

Issue 2306333002: [sensors] Add Generic Sensor platform unit tests. (Closed)
Patch Set: Tim's comments 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/memory/singleton.h"
6
7 #include "device/generic_sensor/fake_platform_sensor.h"
8 #include "device/generic_sensor/fake_platform_sensor_provider.h"
9
10 namespace device {
11
12 // static
13 FakePlatformSensorProvider* FakePlatformSensorProvider::GetInstance() {
14 return base::Singleton<
15 FakePlatformSensorProvider,
16 base::LeakySingletonTraits<FakePlatformSensorProvider>>::get();
17 }
18
19 FakePlatformSensorProvider::FakePlatformSensorProvider() = default;
20
21 FakePlatformSensorProvider::~FakePlatformSensorProvider() = default;
22
23 scoped_refptr<PlatformSensor> FakePlatformSensorProvider::CreateSensorInternal(
24 mojom::SensorType type,
25 mojo::ScopedSharedBufferMapping mapping,
26 uint64_t buffer_size) {
27 return new FakePlatformSensor(type, std::move(mapping), buffer_size, this);
28 }
29
30 } // namespace device
OLDNEW
« no previous file with comments | « device/generic_sensor/fake_platform_sensor_provider.h ('k') | device/generic_sensor/platform_sensor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698