| Index: third_party/WebKit/Source/core/dom/DocumentStyleSheetCollection.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DocumentStyleSheetCollection.h b/third_party/WebKit/Source/core/dom/DocumentStyleSheetCollection.h
|
| index 0ae269da4244cb5849d954798fce0917758b0225..e885d6b7ab583b3fc33591dee5b59c0225b627b2 100644
|
| --- a/third_party/WebKit/Source/core/dom/DocumentStyleSheetCollection.h
|
| +++ b/third_party/WebKit/Source/core/dom/DocumentStyleSheetCollection.h
|
| @@ -38,11 +38,10 @@ class TreeScope;
|
|
|
| class DocumentStyleSheetCollection final : public TreeScopeStyleSheetCollection {
|
| WTF_MAKE_NONCOPYABLE(DocumentStyleSheetCollection);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(DocumentStyleSheetCollection);
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<DocumentStyleSheetCollection> create(TreeScope& treeScope)
|
| + static RawPtr<DocumentStyleSheetCollection> create(TreeScope& treeScope)
|
| {
|
| - return adoptPtrWillBeNoop(new DocumentStyleSheetCollection(treeScope));
|
| + return new DocumentStyleSheetCollection(treeScope);
|
| }
|
|
|
| void updateActiveStyleSheets(StyleEngine&, StyleResolverUpdateMode);
|
|
|