summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/html/TextDocument.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/html/TextDocument.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/html/TextDocument.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/Source/core/html/TextDocument.h b/chromium/third_party/WebKit/Source/core/html/TextDocument.h
index a36617db0bf..a7961f6fc8c 100644
--- a/chromium/third_party/WebKit/Source/core/html/TextDocument.h
+++ b/chromium/third_party/WebKit/Source/core/html/TextDocument.h
@@ -31,15 +31,15 @@ namespace WebCore {
class TextDocument FINAL : public HTMLDocument {
public:
- static PassRefPtr<TextDocument> create(const DocumentInit& initializer = DocumentInit())
+ static PassRefPtrWillBeRawPtr<TextDocument> create(const DocumentInit& initializer = DocumentInit())
{
- return adoptRef(new TextDocument(initializer));
+ return adoptRefWillBeNoop(new TextDocument(initializer));
}
private:
TextDocument(const DocumentInit&);
- virtual PassRefPtr<DocumentParser> createParser();
+ virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser() OVERRIDE;
};
}