| 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 23 matching lines...) Expand all Loading... |
| 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 blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class Dictionary; | |
| 45 class Document; | 44 class Document; |
| 46 class LocalFrame; | 45 class LocalFrame; |
| 47 class GeolocationError; | 46 class GeolocationError; |
| 48 class ExecutionContext; | 47 class ExecutionContext; |
| 49 | 48 |
| 50 class Geolocation final | 49 class Geolocation final |
| 51 : public GarbageCollectedFinalized<Geolocation> | 50 : public GarbageCollectedFinalized<Geolocation> |
| 52 , public ScriptWrappable | 51 , public ScriptWrappable |
| 53 , public ActiveDOMObject { | 52 , public ActiveDOMObject { |
| 54 DEFINE_WRAPPERTYPEINFO(); | 53 DEFINE_WRAPPERTYPEINFO(); |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 }; | 182 }; |
| 184 | 183 |
| 185 Permission m_geolocationPermission; | 184 Permission m_geolocationPermission; |
| 186 | 185 |
| 187 GeoNotifierSet m_requestsAwaitingCachedPosition; | 186 GeoNotifierSet m_requestsAwaitingCachedPosition; |
| 188 }; | 187 }; |
| 189 | 188 |
| 190 } // namespace blink | 189 } // namespace blink |
| 191 | 190 |
| 192 #endif // Geolocation_h | 191 #endif // Geolocation_h |
| OLD | NEW |