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

Side by Side Diff: device/generic_sensor/public/cpp/sensor_reading.h

Issue 2451783002: [sensors] Fix component build warnings for windows platform (Closed)
Patch Set: Created 4 years, 1 month 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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DEVICE_GENERIC_SENSOR_PUBLIC_CPP_SENSOR_READING_H_ 5 #ifndef DEVICE_GENERIC_SENSOR_PUBLIC_CPP_SENSOR_READING_H_
6 #define DEVICE_GENERIC_SENSOR_PUBLIC_CPP_SENSOR_READING_H_ 6 #define DEVICE_GENERIC_SENSOR_PUBLIC_CPP_SENSOR_READING_H_
7 7
8 #include "device/base/synchronization/one_writer_seqlock.h" 8 #include "device/base/synchronization/one_writer_seqlock.h"
9 #include "device/generic_sensor/generic_sensor_export.h" 9 #include "device/generic_sensor/generic_sensor_export.h"
10 #include "device/generic_sensor/public/interfaces/sensor.mojom.h" 10 #include "device/generic_sensor/public/interfaces/sensor.mojom.h"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 struct DEVICE_GENERIC_SENSOR_EXPORT SensorReading { 43 struct DEVICE_GENERIC_SENSOR_EXPORT SensorReading {
44 SensorReading(); 44 SensorReading();
45 ~SensorReading(); 45 ~SensorReading();
46 SensorReading(const SensorReading& other); 46 SensorReading(const SensorReading& other);
47 SensorReadingField<double> timestamp; 47 SensorReadingField<double> timestamp;
48 SensorReadingField<double> values[3]; 48 SensorReadingField<double> values[3];
49 }; 49 };
50 50
51 // This structure represents sensor reading buffer: sensor reading and seqlock 51 // This structure represents sensor reading buffer: sensor reading and seqlock
52 // for synchronization. 52 // for synchronization.
53 struct SensorReadingSharedBuffer { 53 struct DEVICE_GENERIC_SENSOR_EXPORT SensorReadingSharedBuffer {
54 SensorReadingSharedBuffer(); 54 SensorReadingSharedBuffer();
55 ~SensorReadingSharedBuffer(); 55 ~SensorReadingSharedBuffer();
56 SensorReadingField<OneWriterSeqLock> seqlock; 56 SensorReadingField<OneWriterSeqLock> seqlock;
57 SensorReading reading; 57 SensorReading reading;
58 58
59 // Gets the shared reading buffer offset for the given sensor type. 59 // Gets the shared reading buffer offset for the given sensor type.
60 static uint64_t GetOffset(mojom::SensorType type); 60 static uint64_t GetOffset(mojom::SensorType type);
61 }; 61 };
62 62
63 } // namespace device 63 } // namespace device
64 64
65 #endif // DEVICE_GENERIC_SENSOR_PUBLIC_CPP_SENSOR_READING_H_ 65 #endif // DEVICE_GENERIC_SENSOR_PUBLIC_CPP_SENSOR_READING_H_
OLDNEW
« no previous file with comments | « device/generic_sensor/public/cpp/BUILD.gn ('k') | third_party/WebKit/Source/modules/sensor/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698