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

Unified Diff: public/web/WebDocumentType.h

Issue 455883003: Cleanup namespace usage in public/web/Web[A-M]*.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/WebDocument.h ('k') | public/web/WebElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebDocumentType.h
diff --git a/public/web/WebDocumentType.h b/public/web/WebDocumentType.h
index 9ce8f55563714b6b0b940031dda998e9203cb6e4..e3f33f54bd388d8b829bc90912189372e506b015 100644
--- a/public/web/WebDocumentType.h
+++ b/public/web/WebDocumentType.h
@@ -34,11 +34,12 @@
#include "WebNode.h"
#if BLINK_IMPLEMENTATION
-namespace blink { class DocumentType; }
namespace WTF { template <typename T> class PassRefPtr; }
#endif
namespace blink {
+
+class DocumentType;
class WebString;
// Provides readonly access to some properties of a DOM document type.
@@ -57,9 +58,9 @@ public:
BLINK_EXPORT WebString name() const;
#if BLINK_IMPLEMENTATION
- WebDocumentType(const PassRefPtrWillBeRawPtr<blink::DocumentType>&);
- WebDocumentType& operator=(const PassRefPtrWillBeRawPtr<blink::DocumentType>&);
- operator PassRefPtrWillBeRawPtr<blink::DocumentType>() const;
+ WebDocumentType(const PassRefPtrWillBeRawPtr<DocumentType>&);
+ WebDocumentType& operator=(const PassRefPtrWillBeRawPtr<DocumentType>&);
+ operator PassRefPtrWillBeRawPtr<DocumentType>() const;
#endif
};
« no previous file with comments | « public/web/WebDocument.h ('k') | public/web/WebElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698