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

Unified Diff: public/web/WebGeolocationPosition.h

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: public/web/WebGeolocationPosition.h
diff --git a/public/web/WebGeolocationPosition.h b/public/web/WebGeolocationPosition.h
index 8385060daa4b32b70ad3b63c5d5e125a42f8610c..43ad42a6d42b27e0ddca8a4fe8a51e064c2e3bd4 100644
--- a/public/web/WebGeolocationPosition.h
+++ b/public/web/WebGeolocationPosition.h
@@ -29,10 +29,6 @@
#include "../platform/WebCommon.h"
#include "../platform/WebPrivatePtr.h"
-#if BLINK_IMPLEMENTATION
-#include "wtf/PassRefPtr.h"
-#endif
-
namespace WebCore { class GeolocationPosition; }
namespace blink {
@@ -52,9 +48,9 @@ public:
BLINK_EXPORT void reset();
#if BLINK_IMPLEMENTATION
- WebGeolocationPosition(PassRefPtrWillBeRawPtr<WebCore::GeolocationPosition>);
- WebGeolocationPosition& operator=(PassRefPtrWillBeRawPtr<WebCore::GeolocationPosition>);
- operator PassRefPtrWillBeRawPtr<WebCore::GeolocationPosition>() const;
+ WebGeolocationPosition(WebCore::GeolocationPosition*);
+ WebGeolocationPosition& operator=(WebCore::GeolocationPosition*);
+ operator WebCore::GeolocationPosition*() const;
#endif
private:

Powered by Google App Engine
This is Rietveld 408576698