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

Unified Diff: third_party/WebKit/Source/core/dom/DocumentStyleSheetCollection.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/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);

Powered by Google App Engine
This is Rietveld 408576698