| 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();
|
|
|
|
|