| Index: Source/modules/push_messaging/PushError.cpp
|
| diff --git a/Source/modules/push_messaging/PushError.cpp b/Source/modules/push_messaging/PushError.cpp
|
| index 6b829f775ad96be4b1350db3d1eaeb69938398b3..9bee38669cc2e20c5f9ed02da10dd5ebe14fe1f3 100644
|
| --- a/Source/modules/push_messaging/PushError.cpp
|
| +++ b/Source/modules/push_messaging/PushError.cpp
|
| @@ -14,9 +14,9 @@ PassRefPtrWillBeRawPtr<DOMException> PushError::take(ScriptPromiseResolver*, Web
|
| {
|
| OwnPtr<WebType> webError = adoptPtr(webErrorRaw);
|
| switch (webError->errorType) {
|
| - case blink::WebPushError::ErrorTypeAbort:
|
| + case WebPushError::ErrorTypeAbort:
|
| return DOMException::create(AbortError, webError->message);
|
| - case blink::WebPushError::ErrorTypeUnknown:
|
| + case WebPushError::ErrorTypeUnknown:
|
| return DOMException::create(UnknownError);
|
| }
|
| ASSERT_NOT_REACHED();
|
|
|