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

Side by Side Diff: device/sensors/platform_sensor_configuration.h

Issue 2144623003: [sensors] Introduce Generic Sensor API interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Check that frequency is > 0 Created 4 years, 5 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 #ifndef DEVICE_SENSORS_PLATFORM_SENSOR_CONFIGURATION_H_
6 #define DEVICE_SENSORS_PLATFORM_SENSOR_CONFIGURATION_H_
7
8 #include "device/sensors/sensor_export.h"
9
10 namespace device {
11
12 class DEVICE_SENSOR_EXPORT PlatformSensorConfiguration {
13 public:
14 PlatformSensorConfiguration();
15 explicit PlatformSensorConfiguration(double frequency);
16 ~PlatformSensorConfiguration();
17
18 bool operator==(const PlatformSensorConfiguration& other) const;
19
20 void set_frequency(double frequency) { frequency_ = frequency; }
21 double frequency() const { return frequency_; }
22
23 private:
24 double frequency_;
25 };
26
27 } // namespace device
28
29 #endif // DEVICE_SENSORS_PLATFORM_SENSOR_CONFIGURATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698