OLD | NEW |
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 |
(...skipping 19 matching lines...) Expand all Loading... |
30 #include "platform/heap/Handle.h" | 30 #include "platform/heap/Handle.h" |
31 | 31 |
32 namespace blink { | 32 namespace blink { |
33 | 33 |
34 class Geolocation; | 34 class Geolocation; |
35 class GeolocationController; | 35 class GeolocationController; |
36 class GeolocationPosition; | 36 class GeolocationPosition; |
37 class LocalFrame; | 37 class LocalFrame; |
38 | 38 |
39 class GeolocationClient : public NoBaseWillBeGarbageCollectedFinalized<Geolocati
onClient> { | 39 class GeolocationClient : public NoBaseWillBeGarbageCollectedFinalized<Geolocati
onClient> { |
| 40 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(GeolocationClient); |
40 public: | 41 public: |
41 virtual ~GeolocationClient() { } | 42 virtual ~GeolocationClient() { } |
42 | 43 |
43 virtual void startUpdating() = 0; | 44 virtual void startUpdating() = 0; |
44 virtual void stopUpdating() = 0; | 45 virtual void stopUpdating() = 0; |
45 virtual void setEnableHighAccuracy(bool) = 0; | 46 virtual void setEnableHighAccuracy(bool) = 0; |
46 virtual GeolocationPosition* lastPosition() = 0; | 47 virtual GeolocationPosition* lastPosition() = 0; |
47 | 48 |
48 virtual void requestPermission(Geolocation*) = 0; | 49 virtual void requestPermission(Geolocation*) = 0; |
49 virtual void cancelPermissionRequest(Geolocation*) = 0; | 50 virtual void cancelPermissionRequest(Geolocation*) = 0; |
50 | 51 |
51 virtual void controllerForTestAdded(GeolocationController*) { } | 52 virtual void controllerForTestAdded(GeolocationController*) { } |
52 virtual void controllerForTestRemoved(GeolocationController*) { } | 53 virtual void controllerForTestRemoved(GeolocationController*) { } |
53 | 54 |
54 DEFINE_INLINE_VIRTUAL_TRACE() { } | 55 DEFINE_INLINE_VIRTUAL_TRACE() { } |
55 }; | 56 }; |
56 | 57 |
57 MODULES_EXPORT void provideGeolocationTo(LocalFrame&, GeolocationClient*); | 58 MODULES_EXPORT void provideGeolocationTo(LocalFrame&, GeolocationClient*); |
58 | 59 |
59 } // namespace blink | 60 } // namespace blink |
60 | 61 |
61 #endif // GeolocationClient_h | 62 #endif // GeolocationClient_h |
OLD | NEW |