| Index: Source/web/WebNotification.cpp
|
| diff --git a/Source/web/WebNotification.cpp b/Source/web/WebNotification.cpp
|
| index 7e2cb2e8ce7bd90ed76d162009f805cced205990..7afed14912040f271ce6780b7885c2b094eec978 100644
|
| --- a/Source/web/WebNotification.cpp
|
| +++ b/Source/web/WebNotification.cpp
|
| @@ -42,7 +42,7 @@
|
|
|
| using namespace WebCore;
|
|
|
| -namespace WebKit {
|
| +namespace blink {
|
|
|
| class WebNotificationPrivate : public Notification {
|
| };
|
| @@ -112,7 +112,7 @@ void WebNotification::dispatchDisplayEvent()
|
| m_private->dispatchShowEvent();
|
| }
|
|
|
| -void WebNotification::dispatchErrorEvent(const WebKit::WebString& /* errorMessage */)
|
| +void WebNotification::dispatchErrorEvent(const blink::WebString& /* errorMessage */)
|
| {
|
| // FIXME: errorMessage not supported by WebCore yet
|
| m_private->dispatchErrorEvent();
|
| @@ -153,4 +153,4 @@ void WebNotification::assign(WebNotificationPrivate* p)
|
| m_private = p;
|
| }
|
|
|
| -} // namespace WebKit
|
| +} // namespace blink
|
|
|