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

Unified Diff: public/web/WebDocument.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/WebDocument.h
diff --git a/public/web/WebDocument.h b/public/web/WebDocument.h
index d17d428e14288b77ed35da72812484f4391d7458..8bdb3d0d8dc48c37d220b8d0e79b1645cf136303 100644
--- a/public/web/WebDocument.h
+++ b/public/web/WebDocument.h
@@ -137,9 +137,9 @@ public:
BLINK_EXPORT v8::Handle<v8::Value> registerEmbedderCustomElement(const WebString& name, v8::Handle<v8::Value> options, WebExceptionCode&);
#if BLINK_IMPLEMENTATION
- WebDocument(const WTF::PassRefPtr<WebCore::Document>&);
- WebDocument& operator=(const WTF::PassRefPtr<WebCore::Document>&);
- operator WTF::PassRefPtr<WebCore::Document>() const;
+ WebDocument(const PassRefPtrWillBeRawPtr<WebCore::Document>&);
+ WebDocument& operator=(const PassRefPtrWillBeRawPtr<WebCore::Document>&);
+ operator PassRefPtrWillBeRawPtr<WebCore::Document>() const;
#endif
};

Powered by Google App Engine
This is Rietveld 408576698