| Index: public/platform/WebGeofencingError.h
 | 
| diff --git a/public/platform/WebPushError.h b/public/platform/WebGeofencingError.h
 | 
| similarity index 71%
 | 
| copy from public/platform/WebPushError.h
 | 
| copy to public/platform/WebGeofencingError.h
 | 
| index 408254b5cc7e8d252bbd2fee13f6b1476459a881..ccdc743c8d9e46c45f717d8d44b7d50410ff4a87 100644
 | 
| --- a/public/platform/WebPushError.h
 | 
| +++ b/public/platform/WebGeofencingError.h
 | 
| @@ -2,21 +2,21 @@
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| -#ifndef WebPushError_h
 | 
| -#define WebPushError_h
 | 
| +#ifndef WebGeofencingError_h
 | 
| +#define WebGeofencingError_h
 | 
|  
 | 
|  #include "WebString.h"
 | 
|  
 | 
|  namespace blink {
 | 
|  
 | 
| -struct WebPushError {
 | 
| +struct WebGeofencingError {
 | 
|      enum ErrorType {
 | 
|          ErrorTypeAbort = 0,
 | 
|          ErrorTypeUnknown,
 | 
|          ErrorTypeLast = ErrorTypeUnknown
 | 
|      };
 | 
|  
 | 
| -    WebPushError(ErrorType errorType, const WebString& message)
 | 
| +    WebGeofencingError(ErrorType errorType, const WebString& message)
 | 
|          : errorType(errorType)
 | 
|          , message(message)
 | 
|      {
 | 
| @@ -28,4 +28,4 @@ struct WebPushError {
 | 
|  
 | 
|  } // namespace blink
 | 
|  
 | 
| -#endif // WebPushError_h
 | 
| +#endif // WebGeofencingError_h
 | 
| 
 |