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

Unified Diff: public/web/WebDocumentType.h

Issue 270573008: Oilpan: Prepare to support garbage-collected Node in WebNode hierarchy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
Index: public/web/WebDocumentType.h
diff --git a/public/web/WebDocumentType.h b/public/web/WebDocumentType.h
index 876086589088ddaa8b9c9d91d9865b0c55868597..a23eebd9554dfef5c2c34d1bd13df199e7972bf5 100644
--- a/public/web/WebDocumentType.h
+++ b/public/web/WebDocumentType.h
@@ -57,9 +57,9 @@ public:
BLINK_EXPORT WebString name() const;
#if BLINK_IMPLEMENTATION
- WebDocumentType(const WTF::PassRefPtr<WebCore::DocumentType>&);
- WebDocumentType& operator=(const WTF::PassRefPtr<WebCore::DocumentType>&);
- operator WTF::PassRefPtr<WebCore::DocumentType>() const;
+ WebDocumentType(const PassRefPtrWillBeRawPtr<WebCore::DocumentType>&);
+ WebDocumentType& operator=(const PassRefPtrWillBeRawPtr<WebCore::DocumentType>&);
+ operator PassRefPtrWillBeRawPtr<WebCore::DocumentType>() const;
#endif
};

Powered by Google App Engine
This is Rietveld 408576698