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

Unified Diff: third_party/WebKit/Source/core/html/HTMLAllCollection.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/core/html/HTMLAllCollection.h
diff --git a/third_party/WebKit/Source/core/html/HTMLAllCollection.h b/third_party/WebKit/Source/core/html/HTMLAllCollection.h
index 6d3d6fd4faf41ba93ab5595d3d12f053aa2d622e..71921e3ed32fd748d1a011222c2652118cb4cb82 100644
--- a/third_party/WebKit/Source/core/html/HTMLAllCollection.h
+++ b/third_party/WebKit/Source/core/html/HTMLAllCollection.h
@@ -35,7 +35,7 @@ class NodeListOrElement;
class HTMLAllCollection final : public HTMLCollection {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<HTMLAllCollection> create(ContainerNode&, CollectionType);
+ static RawPtr<HTMLAllCollection> create(ContainerNode&, CollectionType);
~HTMLAllCollection() override;
Element* namedItemWithIndex(const AtomicString& name, unsigned index) const;

Powered by Google App Engine
This is Rietveld 408576698