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

Unified Diff: Source/core/dom/Document.h

Issue 289273002: Oilpan: make DocumentFragment a heap allocated object. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Tweaks to avoid conflicts with ongoing ShadowRoot CLs 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: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index ba3991c01785e3cb0400f646c9eb302f30e6591f..749d2dc61a9040421735d55805ea82ed1c48d27f 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -321,7 +321,7 @@ public:
Location* location() const;
PassRefPtrWillBeRawPtr<Element> createElement(const AtomicString& name, ExceptionState&);
- PassRefPtr<DocumentFragment> createDocumentFragment();
+ PassRefPtrWillBeRawPtr<DocumentFragment> createDocumentFragment();
PassRefPtrWillBeRawPtr<Text> createTextNode(const String& data);
PassRefPtrWillBeRawPtr<Comment> createComment(const String& data);
PassRefPtrWillBeRawPtr<CDATASection> createCDATASection(const String& data, ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698