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

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

Issue 319863003: Enable Oilpan for modules/geolocation by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/GeolocationController.h
diff --git a/Source/modules/geolocation/GeolocationController.h b/Source/modules/geolocation/GeolocationController.h
index fd3c83095a27baee109bd65e01b783bc9643b608..abfce42669383e3d95ae4e8262525f60877450a0 100644
--- a/Source/modules/geolocation/GeolocationController.h
+++ b/Source/modules/geolocation/GeolocationController.h
@@ -32,7 +32,6 @@
#include "platform/heap/Handle.h"
#include "wtf/HashSet.h"
#include "wtf/Noncopyable.h"
-#include "wtf/RefPtr.h"
namespace WebCore {
@@ -80,8 +79,8 @@ private:
GeolocationClient* m_client;
bool m_hasClientForTest;
- RefPtrWillBePersistent<GeolocationPosition> m_lastPosition;
- typedef WillBePersistentHeapHashSet<RefPtrWillBeMember<Geolocation> > ObserversSet;
+ Persistent<GeolocationPosition> m_lastPosition;
+ typedef PersistentHeapHashSet<Member<Geolocation> > ObserversSet;
// All observers; both those requesting high accuracy and those not.
ObserversSet m_observers;
ObserversSet m_highAccuracyObservers;

Powered by Google App Engine
This is Rietveld 408576698