| Index: third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.h
|
| diff --git a/third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.h b/third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.h
|
| index f82dd8b01c304febcf1d2901d6744d00e1e2a516..044acb3dcb2f16ad994c80484fae16a8d6dcbda0 100644
|
| --- a/third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.h
|
| +++ b/third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.h
|
| @@ -75,10 +75,10 @@ private:
|
|
|
| void clearError();
|
|
|
| - typedef WillBeHeapHashSet<RawPtrWillBeWeakMember<GeolocationController>> GeolocationControllers;
|
| + typedef HeapHashSet<WeakMember<GeolocationController>> GeolocationControllers;
|
| GeolocationControllers m_controllers;
|
|
|
| - PersistentWillBeMember<GeolocationPosition> m_lastPosition;
|
| + Member<GeolocationPosition> m_lastPosition;
|
| bool m_hasError;
|
| String m_errorMessage;
|
| Timer<GeolocationClientMock> m_controllerTimer;
|
| @@ -93,7 +93,7 @@ private:
|
|
|
| PermissionState m_permissionState;
|
|
|
| - typedef PersistentHeapHashSetWillBeHeapHashSet<Member<Geolocation>> GeolocationSet;
|
| + typedef HeapHashSet<Member<Geolocation>> GeolocationSet;
|
| GeolocationSet m_pendingPermissions;
|
| };
|
|
|
|
|