Index: third_party/WebKit/Source/modules/geolocation/GeolocationWatchers.cpp |
diff --git a/third_party/WebKit/Source/modules/geolocation/GeolocationWatchers.cpp b/third_party/WebKit/Source/modules/geolocation/GeolocationWatchers.cpp |
index b2a0ba108d2c23d291065d9796455357a93cc984..7b2abb5b10491789afdaad65fcfebb9212eae5c2 100644 |
--- a/third_party/WebKit/Source/modules/geolocation/GeolocationWatchers.cpp |
+++ b/third_party/WebKit/Source/modules/geolocation/GeolocationWatchers.cpp |
@@ -29,7 +29,7 @@ GeoNotifier* GeolocationWatchers::find(int id) |
IdToNotifierMap::iterator iter = m_idToNotifierMap.find(id); |
if (iter == m_idToNotifierMap.end()) |
return 0; |
- return iter->value.get(); |
+ return iter->value; |
} |
void GeolocationWatchers::remove(int id) |