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/custom/CustomElementSyncMicrotaskQueue.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/custom/CustomElementSyncMicrotaskQueue.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementSyncMicrotaskQueue.h b/third_party/WebKit/Source/core/dom/custom/CustomElementSyncMicrotaskQueue.h
index c0c20ace929f623bae43eadbd92e02de39e318d7..9976e1be56aa9daecb2a4f4c5fcc5e4dcefd54e5 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementSyncMicrotaskQueue.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementSyncMicrotaskQueue.h
@@ -11,9 +11,9 @@ namespace blink {
class CustomElementSyncMicrotaskQueue : public CustomElementMicrotaskQueueBase {
public:
- static PassRefPtrWillBeRawPtr<CustomElementSyncMicrotaskQueue> create() { return adoptRefWillBeNoop(new CustomElementSyncMicrotaskQueue()); }
+ static RawPtr<CustomElementSyncMicrotaskQueue> create() { return new CustomElementSyncMicrotaskQueue(); }
- void enqueue(PassOwnPtrWillBeRawPtr<CustomElementMicrotaskStep>);
+ void enqueue(RawPtr<CustomElementMicrotaskStep>);
private:
CustomElementSyncMicrotaskQueue() { }

Powered by Google App Engine
This is Rietveld 408576698