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

Side by Side Diff: webkit/chaos/ChaosCoordinates.h

Issue 160084: Chaos geolocation demo, non-WebKit part. Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 4 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 | « webkit/chaos/Chaos.idl ('k') | webkit/chaos/ChaosCoordinates.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 #ifndef ChaosCoordinates_h
2 #define ChaosCoordinates_h
3
4 #include <wtf/RefCounted.h>
5
6 namespace WebCore {
7
8 class ChaosCoordinates : public RefCounted<ChaosCoordinates> {
9 public:
10 ChaosCoordinates(double latitude, double longitude, double accoracy);
11 double latitude() const;
12 double longitude() const;
13 double altitude() const;
14 double accuracy() const;
15 double altitudeAccuracy() const;
16 double heading() const;
17 double speed() const;
18
19 private:
20 double latitude_;
21 double longitude_;
22 double accuracy_;
23 };
24
25 } // namespace WebCore
26
27 #endif // ndef ChaosCoordinates_h
OLDNEW
« no previous file with comments | « webkit/chaos/Chaos.idl ('k') | webkit/chaos/ChaosCoordinates.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698