Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Unified Diff: public/web/WebNotification.h

Issue 454103003: Cleanup namespace usage in public/web/Web[N-Z]*.h. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « public/web/WebNodeList.h ('k') | public/web/WebOptionElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « public/web/WebNodeList.h ('k') | public/web/WebOptionElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698