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

Unified Diff: Source/modules/geolocation/NavigatorGeolocation.h

Issue 552733003: Oilpan: make DOMWindowProperty a GC mixin. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Pacify GC plugin wrt LocalDOMWindow::trace() Created 6 years, 3 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: Source/modules/geolocation/NavigatorGeolocation.h
diff --git a/Source/modules/geolocation/NavigatorGeolocation.h b/Source/modules/geolocation/NavigatorGeolocation.h
index b8ec63d665d83f7d9c7c79689d39cec0456bd9af..7c3f807c0f7f4dd5c368100ae6d1cc856e7e2a01 100644
--- a/Source/modules/geolocation/NavigatorGeolocation.h
+++ b/Source/modules/geolocation/NavigatorGeolocation.h
@@ -30,10 +30,10 @@ class LocalFrame;
class Geolocation;
class Navigator;
-class NavigatorGeolocation FINAL : public NoBaseWillBeGarbageCollectedFinalized<NavigatorGeolocation>, public WillBeHeapSupplement<Navigator>, public DOMWindowProperty {
+class NavigatorGeolocation FINAL : public NoBaseWillBeGarbageCollected<NavigatorGeolocation>, public WillBeHeapSupplement<Navigator>, public DOMWindowProperty {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorGeolocation);
+ DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(NavigatorGeolocation);
public:
- virtual ~NavigatorGeolocation();
static NavigatorGeolocation& from(Navigator&);
static Geolocation* geolocation(Navigator&);

Powered by Google App Engine
This is Rietveld 408576698