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

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

Issue 149391: Chaos Demo Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 5 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:
Name: svn:eol-style
+ LF
OLDNEW
(Empty)
1 #include <wtf/RefCounted.h>
2
3 namespace WebCore {
4
5 class ChaosCoordinates : public RefCounted<ChaosCoordinates> {
6 public:
7 ChaosCoordinates(double latitude, double longitude, double accoracy);
8 double latitude() const;
9 double longitude() const;
10 double altitude() const;
11 double accuracy() const;
12 double altitudeAccuracy() const;
13 double heading() const;
14 double speed() const;
15
16 private:
17 double latitude_;
18 double longitude_;
19 double accuracy_;
20 };
21
22 } // namespace WebCore
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