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

Unified Diff: third_party/WebKit/Source/modules/geofencing/GeofencingEvent.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/geofencing/GeofencingEvent.h
diff --git a/third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h b/third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h
index 01c152e8a4fdd6651548cff128ffcd3f39b89d27..2f4cfc7e4eb479711cdeffb33dd92e3bcb841a85 100644
--- a/third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h
+++ b/third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h
@@ -20,14 +20,14 @@ class GeofencingRegion;
class MODULES_EXPORT GeofencingEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<GeofencingEvent> create()
+ static RawPtr<GeofencingEvent> create()
{
return adoptRefWillBeNoop(new GeofencingEvent);
}
- static PassRefPtrWillBeRawPtr<GeofencingEvent> create(const AtomicString& type, const String& id, GeofencingRegion* region)
+ static RawPtr<GeofencingEvent> create(const AtomicString& type, const String& id, GeofencingRegion* region)
{
- return adoptRefWillBeNoop(new GeofencingEvent(type, id, region));
+ return new GeofencingEvent(type, id, region);
}
~GeofencingEvent() override;
@@ -43,7 +43,7 @@ private:
GeofencingEvent();
GeofencingEvent(const AtomicString& type, const String& id, GeofencingRegion*);
String m_id;
- PersistentWillBeMember<GeofencingRegion> m_region;
+ Member<GeofencingRegion> m_region;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/modules/gamepad/GamepadEvent.h ('k') | third_party/WebKit/Source/modules/geolocation/Geolocation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698