OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All Rights Reserved. |
3 * Copyright 2010, The Android Open Source Project | 3 * Copyright 2010, The Android Open Source Project |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
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 21 matching lines...) Expand all Loading... |
32 #include "core/dom/ActiveDOMObject.h" | 32 #include "core/dom/ActiveDOMObject.h" |
33 #include "modules/geolocation/GeoNotifier.h" | 33 #include "modules/geolocation/GeoNotifier.h" |
34 #include "modules/geolocation/Geoposition.h" | 34 #include "modules/geolocation/Geoposition.h" |
35 #include "modules/geolocation/PositionCallback.h" | 35 #include "modules/geolocation/PositionCallback.h" |
36 #include "modules/geolocation/PositionError.h" | 36 #include "modules/geolocation/PositionError.h" |
37 #include "modules/geolocation/PositionErrorCallback.h" | 37 #include "modules/geolocation/PositionErrorCallback.h" |
38 #include "modules/geolocation/PositionOptions.h" | 38 #include "modules/geolocation/PositionOptions.h" |
39 #include "platform/Timer.h" | 39 #include "platform/Timer.h" |
40 #include "platform/heap/Handle.h" | 40 #include "platform/heap/Handle.h" |
41 | 41 |
42 namespace WebCore { | 42 namespace blink { |
43 | 43 |
44 class Dictionary; | 44 class Dictionary; |
45 class Document; | 45 class Document; |
46 class LocalFrame; | 46 class LocalFrame; |
47 class GeofencingRegion; | 47 class GeofencingRegion; |
48 class GeolocationController; | 48 class GeolocationController; |
49 class GeolocationError; | 49 class GeolocationError; |
50 class GeolocationPosition; | 50 class GeolocationPosition; |
51 class ExecutionContext; | 51 class ExecutionContext; |
52 | 52 |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 PermissionRequested, | 200 PermissionRequested, |
201 PermissionAllowed, | 201 PermissionAllowed, |
202 PermissionDenied | 202 PermissionDenied |
203 }; | 203 }; |
204 | 204 |
205 Permission m_geolocationPermission; | 205 Permission m_geolocationPermission; |
206 | 206 |
207 GeoNotifierSet m_requestsAwaitingCachedPosition; | 207 GeoNotifierSet m_requestsAwaitingCachedPosition; |
208 }; | 208 }; |
209 | 209 |
210 } // namespace WebCore | 210 } // namespace blink |
211 | 211 |
212 #endif // Geolocation_h | 212 #endif // Geolocation_h |
OLD | NEW |