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

Unified Diff: public/web/WebNodeList.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/WebNode.h ('k') | public/web/WebNotification.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebNodeList.h
diff --git a/public/web/WebNodeList.h b/public/web/WebNodeList.h
index 4d8131c39592832d732b8f72dd42dc3af04efdd4..4e7dcf9a15bd733db4fb2cb2261f8c8c9ed080c3 100644
--- a/public/web/WebNodeList.h
+++ b/public/web/WebNodeList.h
@@ -34,13 +34,14 @@
#include "public/platform/WebCommon.h"
#include "public/platform/WebPrivatePtr.h"
-namespace blink { class NodeList; }
#if BLINK_IMPLEMENTATION
#include "platform/heap/Handle.h"
namespace WTF { template <typename T> class PassRefPtr; }
#endif
namespace blink {
+
+class NodeList;
class WebNode;
// Provides readonly access to some properties of a DOM node.
@@ -63,12 +64,12 @@ public:
BLINK_EXPORT WebNode item(size_t) const;
#if BLINK_IMPLEMENTATION
- WebNodeList(const PassRefPtrWillBeRawPtr<blink::NodeList>&);
- WebNodeList& operator=(const PassRefPtrWillBeRawPtr<blink::NodeList>&);
+ WebNodeList(const PassRefPtrWillBeRawPtr<NodeList>&);
+ WebNodeList& operator=(const PassRefPtrWillBeRawPtr<NodeList>&);
#endif
private:
- WebPrivatePtr<blink::NodeList> m_private;
+ WebPrivatePtr<NodeList> m_private;
};
} // namespace blink
« no previous file with comments | « public/web/WebNode.h ('k') | public/web/WebNotification.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698