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

Side by Side Diff: Source/modules/geolocation/Coordinates.h

Issue 15232002: Make remaining modules/ objects ScriptWrappable (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « Source/modules/gamepad/GamepadList.h ('k') | Source/modules/geolocation/Geoposition.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2009 Apple 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef Coordinates_h 26 #ifndef Coordinates_h
27 #define Coordinates_h 27 #define Coordinates_h
28 28
29 #include "bindings/v8/ScriptWrappable.h"
29 #include "core/dom/Event.h" 30 #include "core/dom/Event.h"
30 #include "wtf/RefCounted.h" 31 #include "wtf/RefCounted.h"
31 32
32 namespace WebCore { 33 namespace WebCore {
33 34
34 class Coordinates : public RefCounted<Coordinates> { 35 class Coordinates : public RefCounted<Coordinates>, public ScriptWrappable {
35 public: 36 public:
36 static PassRefPtr<Coordinates> create(double latitude, double longitude, boo l providesAltitude, double altitude, double accuracy, bool providesAltitudeAccur acy, double altitudeAccuracy, bool providesHeading, double heading, bool provide sSpeed, double speed) { return adoptRef(new Coordinates(latitude, longitude, pro videsAltitude, altitude, accuracy, providesAltitudeAccuracy, altitudeAccuracy, p rovidesHeading, heading, providesSpeed, speed)); } 37 static PassRefPtr<Coordinates> create(double latitude, double longitude, boo l providesAltitude, double altitude, double accuracy, bool providesAltitudeAccur acy, double altitudeAccuracy, bool providesHeading, double heading, bool provide sSpeed, double speed) { return adoptRef(new Coordinates(latitude, longitude, pro videsAltitude, altitude, accuracy, providesAltitudeAccuracy, altitudeAccuracy, p rovidesHeading, heading, providesSpeed, speed)); }
37 38
38 PassRefPtr<Coordinates> isolatedCopy() const 39 PassRefPtr<Coordinates> isolatedCopy() const
39 { 40 {
40 return Coordinates::create(m_latitude, m_longitude, m_canProvideAltitude , m_altitude, m_accuracy, m_canProvideAltitudeAccuracy, m_altitudeAccuracy, m_ca nProvideHeading, m_heading, m_canProvideSpeed, m_speed); 41 return Coordinates::create(m_latitude, m_longitude, m_canProvideAltitude , m_altitude, m_accuracy, m_canProvideAltitudeAccuracy, m_altitudeAccuracy, m_ca nProvideHeading, m_heading, m_canProvideSpeed, m_speed);
41 } 42 }
42 43
43 double latitude() const { return m_latitude; } 44 double latitude() const { return m_latitude; }
44 double longitude() const { return m_longitude; } 45 double longitude() const { return m_longitude; }
45 double altitude(bool& isNull) const; 46 double altitude(bool& isNull) const;
46 double accuracy() const { return m_accuracy; } 47 double accuracy() const { return m_accuracy; }
47 double altitudeAccuracy(bool& isNull) const; 48 double altitudeAccuracy(bool& isNull) const;
48 double heading(bool& isNull) const; 49 double heading(bool& isNull) const;
49 double speed(bool& isNull) const; 50 double speed(bool& isNull) const;
50 51
51 private: 52 private:
52 Coordinates(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccura cy, bool providesHeading, double heading, bool providesSpeed, double speed) 53 Coordinates(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccura cy, bool providesHeading, double heading, bool providesSpeed, double speed)
53 : m_latitude(latitude) 54 : m_latitude(latitude)
54 , m_longitude(longitude) 55 , m_longitude(longitude)
55 , m_altitude(altitude) 56 , m_altitude(altitude)
56 , m_accuracy(accuracy) 57 , m_accuracy(accuracy)
57 , m_altitudeAccuracy(altitudeAccuracy) 58 , m_altitudeAccuracy(altitudeAccuracy)
58 , m_heading(heading) 59 , m_heading(heading)
59 , m_speed(speed) 60 , m_speed(speed)
60 , m_canProvideAltitude(providesAltitude) 61 , m_canProvideAltitude(providesAltitude)
61 , m_canProvideAltitudeAccuracy(providesAltitudeAccuracy) 62 , m_canProvideAltitudeAccuracy(providesAltitudeAccuracy)
62 , m_canProvideHeading(providesHeading) 63 , m_canProvideHeading(providesHeading)
63 , m_canProvideSpeed(providesSpeed) 64 , m_canProvideSpeed(providesSpeed)
64 { 65 {
66 ScriptWrappable::init(this);
65 } 67 }
66 68
67 double m_latitude; 69 double m_latitude;
68 double m_longitude; 70 double m_longitude;
69 double m_altitude; 71 double m_altitude;
70 double m_accuracy; 72 double m_accuracy;
71 double m_altitudeAccuracy; 73 double m_altitudeAccuracy;
72 double m_heading; 74 double m_heading;
73 double m_speed; 75 double m_speed;
74 76
75 bool m_canProvideAltitude; 77 bool m_canProvideAltitude;
76 bool m_canProvideAltitudeAccuracy; 78 bool m_canProvideAltitudeAccuracy;
77 bool m_canProvideHeading; 79 bool m_canProvideHeading;
78 bool m_canProvideSpeed; 80 bool m_canProvideSpeed;
79 }; 81 };
80 82
81 } // namespace WebCore 83 } // namespace WebCore
82 84
83 #endif // Coordinates_h 85 #endif // Coordinates_h
OLDNEW
« no previous file with comments | « Source/modules/gamepad/GamepadList.h ('k') | Source/modules/geolocation/Geoposition.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698