| Index: third_party/WebKit/Source/modules/geofencing/WorkerNavigatorGeofencing.cpp | 
| diff --git a/third_party/WebKit/Source/modules/geofencing/WorkerNavigatorGeofencing.cpp b/third_party/WebKit/Source/modules/geofencing/WorkerNavigatorGeofencing.cpp | 
| index 61d8340e7d2ce93da4ebc385c2851e4a47a9eb4c..6fb17a2a18e29ee9d7848c46f9ff90bbdff752db 100644 | 
| --- a/third_party/WebKit/Source/modules/geofencing/WorkerNavigatorGeofencing.cpp | 
| +++ b/third_party/WebKit/Source/modules/geofencing/WorkerNavigatorGeofencing.cpp | 
| @@ -24,7 +24,7 @@ const char* WorkerNavigatorGeofencing::supplementName() | 
|  | 
| WorkerNavigatorGeofencing& WorkerNavigatorGeofencing::from(WorkerNavigator& navigator) | 
| { | 
| -    WorkerNavigatorGeofencing* supplement = static_cast<WorkerNavigatorGeofencing*>(HeapSupplement<WorkerNavigator>::from(navigator, supplementName())); | 
| +    WorkerNavigatorGeofencing* supplement = static_cast<WorkerNavigatorGeofencing*>(Supplement<WorkerNavigator>::from(navigator, supplementName())); | 
| if (!supplement) { | 
| supplement = new WorkerNavigatorGeofencing(); | 
| provideTo(navigator, supplementName(), supplement); | 
| @@ -47,7 +47,7 @@ Geofencing* WorkerNavigatorGeofencing::geofencing() | 
| DEFINE_TRACE(WorkerNavigatorGeofencing) | 
| { | 
| visitor->trace(m_geofencing); | 
| -    HeapSupplement<WorkerNavigator>::trace(visitor); | 
| +    Supplement<WorkerNavigator>::trace(visitor); | 
| } | 
|  | 
| } // namespace blink | 
|  |