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