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

Unified Diff: third_party/WebKit/Source/modules/navigatorconnect/ServicePortConnectEvent.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/modules/navigatorconnect/ServicePortConnectEvent.h
diff --git a/third_party/WebKit/Source/modules/navigatorconnect/ServicePortConnectEvent.h b/third_party/WebKit/Source/modules/navigatorconnect/ServicePortConnectEvent.h
index a687b6751b5e6e04ea6c0ac6be35e28afb0b0eeb..529b25f4fe34d92e895d83a70592cf28da87a3fc 100644
--- a/third_party/WebKit/Source/modules/navigatorconnect/ServicePortConnectEvent.h
+++ b/third_party/WebKit/Source/modules/navigatorconnect/ServicePortConnectEvent.h
@@ -22,9 +22,9 @@ class ServicePortConnectEventInit;
class MODULES_EXPORT ServicePortConnectEvent final : public ExtendableEvent {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<ServicePortConnectEvent> create();
- static PassRefPtrWillBeRawPtr<ServicePortConnectEvent> create(const AtomicString& type, const ServicePortConnectEventInit&);
- static PassRefPtrWillBeRawPtr<ServicePortConnectEvent> create(const AtomicString& type, const ServicePortConnectEventInit&, AcceptConnectionObserver*);
+ static RawPtr<ServicePortConnectEvent> create();
+ static RawPtr<ServicePortConnectEvent> create(const AtomicString& type, const ServicePortConnectEventInit&);
+ static RawPtr<ServicePortConnectEvent> create(const AtomicString& type, const ServicePortConnectEventInit&, AcceptConnectionObserver*);
// ServicePortConnectEvent.idl
String targetURL() const { return m_targetURL; }
@@ -40,7 +40,7 @@ protected:
ServicePortConnectEvent(const AtomicString& type, const ServicePortConnectEventInit&, AcceptConnectionObserver*);
private:
- PersistentWillBeMember<AcceptConnectionObserver> m_observer;
+ Member<AcceptConnectionObserver> m_observer;
String m_targetURL;
String m_origin;
};

Powered by Google App Engine
This is Rietveld 408576698