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

Side by Side Diff: device/generic_sensor/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: Comments from Reilly Created 4 years, 4 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_
timvolodine 2016/08/18 22:52:14 -> DEVICE_GENERIC_SENSOR_PLATFORM.. ?
Mikhail 2016/08/19 09:29:55 Done, thanks for noticing
6 #define DEVICE_SENSORS_PLATFORM_SENSOR_CONFIGURATION_H_
7
8 #include "base/logging.h"
9 #include "device/generic_sensor/sensor_export.h"
10
11 namespace device {
12
13 class DEVICE_SENSOR_EXPORT PlatformSensorConfiguration {
14 public:
15 PlatformSensorConfiguration();
timvolodine 2016/08/18 22:52:14 is this constructor needed? just keep the one with
Mikhail 2016/08/19 09:29:55 It is required by mojo generated binding, have to
16 explicit PlatformSensorConfiguration(double frequency);
17 ~PlatformSensorConfiguration();
18
19 bool operator==(const PlatformSensorConfiguration& other) const;
20
21 void set_frequency(double frequency) {
22 DCHECK(frequency_ <= 60.0 && frequency_ > 0.0);
timvolodine 2016/08/18 22:52:14 probably worth having some kind of constant for 60
Mikhail 2016/08/19 09:29:55 Done.
23 frequency_ = frequency;
24 }
25
26 double frequency() const { return frequency_; }
27
28 private:
29 double frequency_ = 1.0; // 1 Hz by default.
timvolodine 2016/08/18 22:52:14 1 Hz seems a bit arbitrary, no need for this is on
30 };
31
32 } // namespace device
33
34 #endif // DEVICE_SENSORS_PLATFORM_SENSOR_CONFIGURATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698