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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationConnection.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, 10 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/modules/presentation/PresentationConnection.h
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationConnection.h b/third_party/WebKit/Source/modules/presentation/PresentationConnection.h
index ddef430ede3852674cfd5788c7313e1ba2ebb067..10dbe7143d0cb1d47313c171c277ce1bc2f996ea 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationConnection.h
+++ b/third_party/WebKit/Source/modules/presentation/PresentationConnection.h
@@ -29,7 +29,7 @@ class PresentationConnection final
: public RefCountedGarbageCollectedEventTargetWithInlineData<PresentationConnection>
, public DOMWindowProperty {
REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(PresentationConnection);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PresentationConnection);
+ USING_GARBAGE_COLLECTED_MIXIN(PresentationConnection);
DEFINE_WRAPPERTYPEINFO();
public:
// For CallbackPromiseAdapter.
@@ -73,7 +73,7 @@ public:
protected:
// EventTarget implementation.
- bool addEventListenerInternal(const AtomicString& eventType, PassRefPtrWillBeRawPtr<EventListener>, const EventListenerOptions&) override;
+ bool addEventListenerInternal(const AtomicString& eventType, RawPtr<EventListener>, const EventListenerOptions&) override;
private:
class BlobLoader;

Powered by Google App Engine
This is Rietveld 408576698