Chromium Code Reviews| Index: Source/modules/geolocation/GeolocationInspectorAgent.h |
| diff --git a/Source/modules/geolocation/GeolocationInspectorAgent.h b/Source/modules/geolocation/GeolocationInspectorAgent.h |
| index e3c526059da3e03cc7d27a8816fbaec66e4f4176..2a950444bf585570063398ee7199f53abc6ad5d9 100644 |
| --- a/Source/modules/geolocation/GeolocationInspectorAgent.h |
| +++ b/Source/modules/geolocation/GeolocationInspectorAgent.h |
| @@ -61,7 +61,8 @@ public: |
| private: |
| GeolocationInspectorAgent(); |
| - WTF::HashSet<GeolocationController*> m_controllers; |
| + typedef HeapHashSet<RawPtrWillBeMember<GeolocationController> > GeolocationControllers; |
| + PersistentHeapHashSet<RawPtrWillBeMember<GeolocationController> > m_controllers; |
|
zerny-chromium
2014/06/16 09:50:18
Should we use WillBe(Persistent)HeapHashSet for th
sof
2014/06/16 10:39:06
Yes, thanks. Added WillBe prefixes (in both places
|
| bool m_geolocationOverridden; |
| Persistent<GeolocationPosition> m_geolocationPosition; |
| Persistent<GeolocationPosition> m_platformGeolocationPosition; |