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

Unified Diff: Source/web/GeolocationClientProxy.cpp

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/web/GeolocationClientProxy.cpp
diff --git a/Source/web/GeolocationClientProxy.cpp b/Source/web/GeolocationClientProxy.cpp
index b831e0f01e27b01063d9e83e525246da191bf56c..71832f31b883fe6c57f2c80549f09f40c09e3893 100644
--- a/Source/web/GeolocationClientProxy.cpp
+++ b/Source/web/GeolocationClientProxy.cpp
@@ -77,7 +77,7 @@ WebCore::GeolocationPosition* GeolocationClientProxy::lastPosition()
{
WebGeolocationPosition webPosition;
if (m_client->lastPosition(webPosition))
- m_lastPosition = PassRefPtrWillBeRawPtr<WebCore::GeolocationPosition>(webPosition);
+ m_lastPosition = static_cast<WebCore::GeolocationPosition*>(webPosition);
else
m_lastPosition.clear();

Powered by Google App Engine
This is Rietveld 408576698