Index: content/common/device_sensors/device_light_data.h |
diff --git a/content/common/device_sensors/device_light_data.h b/content/common/device_sensors/device_light_data.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f52934613f46632bfa5a505162097daa37880b0a |
--- /dev/null |
+++ b/content/common/device_sensors/device_light_data.h |
@@ -0,0 +1,24 @@ |
+// Copyright 2014 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 CONTENT_COMMON_DEVICE_SENSORS_DEVICE_LIGHT_DATA_H_ |
+#define CONTENT_COMMON_DEVICE_SENSORS_DEVICE_LIGHT_DATA_H_ |
+ |
+#include "content/common/content_export.h" |
+ |
+namespace content { |
+ |
+class DeviceLightData { |
+ public: |
+ CONTENT_EXPORT DeviceLightData(); |
+ ~DeviceLightData() { } |
+ |
+ double value; |
jochen (gone - plz use gerrit)
2014/06/12 14:33:50
this class doesn't follow the coding style at all.
timvolodine
2014/06/12 15:25:28
re getters/setters: this class is intentionally PO
riju_
2014/06/13 17:06:25
Done. As Tim suggested, adding a comment why this
|
+ bool valueIsUpdated : 1; |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_COMMON_DEVICE_SENSORS_DEVICE_LIGHT_DATA_H_ |
+ |