| Index: Source/modules/geofencing/GeofencingError.cpp
 | 
| diff --git a/Source/modules/geofencing/GeofencingError.cpp b/Source/modules/geofencing/GeofencingError.cpp
 | 
| index 9d4a266db445ed4e4bab02cd19961ce9f0d9f09b..ed53bcd7dc1c00f53571e5b4732eb9d56c90c0da 100644
 | 
| --- a/Source/modules/geofencing/GeofencingError.cpp
 | 
| +++ b/Source/modules/geofencing/GeofencingError.cpp
 | 
| @@ -10,12 +10,12 @@
 | 
|  
 | 
|  namespace blink {
 | 
|  
 | 
| -DOMException* GeofencingError::take(ScriptPromiseResolver*, PassOwnPtr<WebType> webError)
 | 
| +DOMException* GeofencingError::take(ScriptPromiseResolver*, PassOwnPtr<WebGeofencingError> webError)
 | 
|  {
 | 
|      switch (webError->errorType) {
 | 
| -    case WebType::ErrorTypeAbort:
 | 
| +    case WebGeofencingError::ErrorTypeAbort:
 | 
|          return DOMException::create(AbortError, webError->message);
 | 
| -    case WebType::ErrorTypeUnknown:
 | 
| +    case WebGeofencingError::ErrorTypeUnknown:
 | 
|          return DOMException::create(UnknownError, webError->message);
 | 
|      }
 | 
|      ASSERT_NOT_REACHED();
 | 
| 
 |