| Index: public/platform/WebGeofencingError.h
|
| diff --git a/public/platform/WebPushError.h b/public/platform/WebGeofencingError.h
|
| similarity index 66%
|
| copy from public/platform/WebPushError.h
|
| copy to public/platform/WebGeofencingError.h
|
| index 408254b5cc7e8d252bbd2fee13f6b1476459a881..f7d3be59a5155f4984eaa57f93290d5d1fb9b281 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"
|
| +#include "public/platform/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
|
|
|