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

Unified Diff: Source/web/WebGeolocationError.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/WebGeolocationError.cpp
diff --git a/Source/web/WebGeolocationError.cpp b/Source/web/WebGeolocationError.cpp
index bca981af1f528c2bd98ecadd76ae27355b481db1..7930bb2f35f5f0774805c8412918e03026f82129 100644
--- a/Source/web/WebGeolocationError.cpp
+++ b/Source/web/WebGeolocationError.cpp
@@ -48,18 +48,18 @@ void WebGeolocationError::reset()
m_private.reset();
}
-WebGeolocationError::WebGeolocationError(PassRefPtrWillBeRawPtr<GeolocationError> error)
+WebGeolocationError::WebGeolocationError(GeolocationError* error)
{
m_private = error;
}
-WebGeolocationError& WebGeolocationError::operator=(PassRefPtrWillBeRawPtr<GeolocationError> error)
+WebGeolocationError& WebGeolocationError::operator=(GeolocationError* error)
{
m_private = error;
return *this;
}
-WebGeolocationError::operator PassRefPtrWillBeRawPtr<GeolocationError>() const
+WebGeolocationError::operator GeolocationError*() const
{
return m_private.get();
}

Powered by Google App Engine
This is Rietveld 408576698