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 |
}; |