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

Unified Diff: third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.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/geolocation/testing/GeolocationClientMock.h
diff --git a/third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.h b/third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.h
index f82dd8b01c304febcf1d2901d6744d00e1e2a516..044acb3dcb2f16ad994c80484fae16a8d6dcbda0 100644
--- a/third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.h
+++ b/third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.h
@@ -75,10 +75,10 @@ private:
void clearError();
- typedef WillBeHeapHashSet<RawPtrWillBeWeakMember<GeolocationController>> GeolocationControllers;
+ typedef HeapHashSet<WeakMember<GeolocationController>> GeolocationControllers;
GeolocationControllers m_controllers;
- PersistentWillBeMember<GeolocationPosition> m_lastPosition;
+ Member<GeolocationPosition> m_lastPosition;
bool m_hasError;
String m_errorMessage;
Timer<GeolocationClientMock> m_controllerTimer;
@@ -93,7 +93,7 @@ private:
PermissionState m_permissionState;
- typedef PersistentHeapHashSetWillBeHeapHashSet<Member<Geolocation>> GeolocationSet;
+ typedef HeapHashSet<Member<Geolocation>> GeolocationSet;
GeolocationSet m_pendingPermissions;
};

Powered by Google App Engine
This is Rietveld 408576698