| 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..2a81bea19b0f571f264c7bb2f356a912bd0154d7 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);
|
|
|