OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 11 matching lines...) Expand all Loading... |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 */ | 24 */ |
25 | 25 |
26 #ifndef WebGeolocationPosition_h | 26 #ifndef WebGeolocationPosition_h |
27 #define WebGeolocationPosition_h | 27 #define WebGeolocationPosition_h |
28 | 28 |
29 #include "../platform/WebCommon.h" | 29 #include "../platform/WebCommon.h" |
30 #include "../platform/WebPrivatePtr.h" | 30 #include "../platform/WebPrivatePtr.h" |
31 | 31 |
32 namespace WebCore { class GeolocationPosition; } | 32 namespace blink { class GeolocationPosition; } |
33 | 33 |
34 namespace blink { | 34 namespace blink { |
35 | 35 |
36 class WebGeolocationPosition { | 36 class WebGeolocationPosition { |
37 public: | 37 public: |
38 WebGeolocationPosition() {} | 38 WebGeolocationPosition() {} |
39 WebGeolocationPosition(double timestamp, double latitude, double longitude,
double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAc
curacy, double altitudeAccuracy, bool providesHeading, double heading, bool prov
idesSpeed, double speed) | 39 WebGeolocationPosition(double timestamp, double latitude, double longitude,
double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAc
curacy, double altitudeAccuracy, bool providesHeading, double heading, bool prov
idesSpeed, double speed) |
40 { | 40 { |
41 assign(timestamp, latitude, longitude, accuracy, providesAltitude, altit
ude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, provi
desSpeed, speed); | 41 assign(timestamp, latitude, longitude, accuracy, providesAltitude, altit
ude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, provi
desSpeed, speed); |
42 } | 42 } |
43 WebGeolocationPosition(const WebGeolocationPosition& other) { assign(other);
} | 43 WebGeolocationPosition(const WebGeolocationPosition& other) { assign(other);
} |
44 ~WebGeolocationPosition() { reset(); } | 44 ~WebGeolocationPosition() { reset(); } |
45 | 45 |
46 BLINK_EXPORT void assign(double timestamp, double latitude, double longitude
, double accuracy, bool providesAltitude, double altitude, bool providesAltitude
Accuracy, double altitudeAccuracy, bool providesHeading, double heading, bool pr
ovidesSpeed, double speed); | 46 BLINK_EXPORT void assign(double timestamp, double latitude, double longitude
, double accuracy, bool providesAltitude, double altitude, bool providesAltitude
Accuracy, double altitudeAccuracy, bool providesHeading, double heading, bool pr
ovidesSpeed, double speed); |
47 BLINK_EXPORT void assign(const WebGeolocationPosition&); | 47 BLINK_EXPORT void assign(const WebGeolocationPosition&); |
48 BLINK_EXPORT void reset(); | 48 BLINK_EXPORT void reset(); |
49 | 49 |
50 #if BLINK_IMPLEMENTATION | 50 #if BLINK_IMPLEMENTATION |
51 WebGeolocationPosition(WebCore::GeolocationPosition*); | 51 WebGeolocationPosition(blink::GeolocationPosition*); |
52 WebGeolocationPosition& operator=(WebCore::GeolocationPosition*); | 52 WebGeolocationPosition& operator=(blink::GeolocationPosition*); |
53 operator WebCore::GeolocationPosition*() const; | 53 operator blink::GeolocationPosition*() const; |
54 #endif | 54 #endif |
55 | 55 |
56 private: | 56 private: |
57 WebPrivatePtr<WebCore::GeolocationPosition> m_private; | 57 WebPrivatePtr<blink::GeolocationPosition> m_private; |
58 }; | 58 }; |
59 | 59 |
60 } // namespace blink | 60 } // namespace blink |
61 | 61 |
62 #endif // WebGeolocationPosition_h | 62 #endif // WebGeolocationPosition_h |
OLD | NEW |