Index: public/web/WebNotification.h |
diff --git a/public/web/WebNotification.h b/public/web/WebNotification.h |
index 1b9587a7cd2d1b82748bcca62563b267895f5a26..d2b804e2723e45c3df4e556f88c2040d9ffae7ff 100644 |
--- a/public/web/WebNotification.h |
+++ b/public/web/WebNotification.h |
@@ -36,7 +36,7 @@ |
#include "../platform/WebString.h" |
#include "WebTextDirection.h" |
-namespace WebCore { class Notification; } |
+namespace blink { class Notification; } |
#if BLINK_IMPLEMENTATION |
namespace WTF { template <typename T> class PassRefPtr; } |
@@ -93,12 +93,12 @@ public: |
void dispatchDisplayEvent() { dispatchShowEvent(); } |
#if BLINK_IMPLEMENTATION |
- WebNotification(WebCore::Notification*); |
- WebNotification& operator=(WebCore::Notification*); |
+ WebNotification(blink::Notification*); |
+ WebNotification& operator=(blink::Notification*); |
#endif |
private: |
- WebPrivatePtr<WebCore::Notification> m_private; |
+ WebPrivatePtr<blink::Notification> m_private; |
}; |
inline bool operator==(const WebNotification& a, const WebNotification& b) |