| Index: third_party/WebKit/Source/modules/geolocation/GeolocationController.cpp
|
| diff --git a/third_party/WebKit/Source/modules/geolocation/GeolocationController.cpp b/third_party/WebKit/Source/modules/geolocation/GeolocationController.cpp
|
| index b399325bc770bec9d9a967902f6744339a10bfe9..2ab6033cc7e4d73a23962433538f1224e6edab67 100644
|
| --- a/third_party/WebKit/Source/modules/geolocation/GeolocationController.cpp
|
| +++ b/third_party/WebKit/Source/modules/geolocation/GeolocationController.cpp
|
| @@ -187,13 +187,13 @@ DEFINE_TRACE(GeolocationController)
|
| visitor->trace(m_lastPosition);
|
| visitor->trace(m_observers);
|
| visitor->trace(m_highAccuracyObservers);
|
| - HeapSupplement<LocalFrame>::trace(visitor);
|
| + Supplement<LocalFrame>::trace(visitor);
|
| PageLifecycleObserver::trace(visitor);
|
| }
|
|
|
| void provideGeolocationTo(LocalFrame& frame, GeolocationClient* client)
|
| {
|
| - HeapSupplement<LocalFrame>::provideTo(frame, GeolocationController::supplementName(), GeolocationController::create(frame, client));
|
| + Supplement<LocalFrame>::provideTo(frame, GeolocationController::supplementName(), GeolocationController::create(frame, client));
|
| }
|
|
|
| } // namespace blink
|
|
|