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

Side by Side Diff: Source/Platform/chromium/public/WebDeviceMotionData.h

Issue 14460010: Implement the Blink part of the Device Motion API. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: made WebDeviceMotionData more "POD-ish" Created 7 years, 7 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 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #ifndef WebDeviceMotionData_h
32 #define WebDeviceMotionData_h
33
34 #include "../../../Platform/chromium/public/WebCommon.h"
35
36 #if WEBKIT_IMPLEMENTATION
37 namespace WTF { template <typename T> class PassRefPtr; }
38 namespace WebCore { class DeviceMotionData; }
39 #endif
40
41 namespace WebKit {
42
43 #pragma pack(push, 1)
44
45 class WebDeviceMotionData {
46 public:
47 WebDeviceMotionData();
darin (slow to review) 2013/05/16 19:41:15 this constructor needs to be exported so Chromium
timvolodine 2013/05/17 13:36:38 Done.
48 ~WebDeviceMotionData() { }
49
50 #if WEBKIT_IMPLEMENTATION
51 WEBKIT_EXPORT operator WTF::PassRefPtr<WebCore::DeviceMotionData>() const;
darin (slow to review) 2013/05/16 19:41:15 this method does not need to be exported since it
timvolodine 2013/05/17 13:36:38 moved this whole thing to WebCore::DeviceMotionDat
52 #endif
53
54 double accelerationX;
55 double accelerationY;
56 double accelerationZ;
57
58 double accelerationIncludingGravityX;
59 double accelerationIncludingGravityY;
60 double accelerationIncludingGravityZ;
61
62 double rotationRateAlpha;
63 double rotationRateBeta;
64 double rotationRateGamma;
65
66 double interval;
67
68 bool hasAccelerationX : 1;
69 bool hasAccelerationY : 1;
70 bool hasAccelerationZ : 1;
71
72 bool hasAccelerationIncludingGravityX : 1;
73 bool hasAccelerationIncludingGravityY : 1;
74 bool hasAccelerationIncludingGravityZ : 1;
75
76 bool hasRotationRateAlpha : 1;
77 bool hasRotationRateBeta : 1;
78 bool hasRotationRateGamma : 1;
79 };
80
81 #if WEBKIT_IMPLEMENTATION
82 COMPILE_ASSERT(sizeof(WebDeviceMotionData) == (10 * sizeof(double) + 2 * sizeof( char)), WebDeviceMotionData_has_wrong_size);
83 #endif
84
85 #pragma pack(pop)
86
87 } // namespace WebKit
88
89 #endif // WebDeviceMotionData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698