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

Unified Diff: public/web/WebGeolocationError.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/WebGeolocationError.h
diff --git a/public/web/WebGeolocationError.h b/public/web/WebGeolocationError.h
index 16c0cabdcb5ac65457e1d928ce50e672bada7a93..6e25662176fa0a8637a58abe6046386e9dbbedab 100644
--- a/public/web/WebGeolocationError.h
+++ b/public/web/WebGeolocationError.h
@@ -29,10 +29,6 @@
#include "../platform/WebCommon.h"
#include "../platform/WebPrivatePtr.h"
-#if BLINK_IMPLEMENTATION
-#include "wtf/PassRefPtr.h"
-#endif
-
namespace WebCore { class GeolocationError; }
namespace blink {
@@ -55,9 +51,9 @@ public:
BLINK_EXPORT void reset();
#if BLINK_IMPLEMENTATION
- WebGeolocationError(PassRefPtrWillBeRawPtr<WebCore::GeolocationError>);
- WebGeolocationError& operator=(PassRefPtrWillBeRawPtr<WebCore::GeolocationError>);
- operator PassRefPtrWillBeRawPtr<WebCore::GeolocationError>() const;
+ WebGeolocationError(WebCore::GeolocationError*);
+ WebGeolocationError& operator=(WebCore::GeolocationError*);
+ operator WebCore::GeolocationError*() const;
#endif
private:

Powered by Google App Engine
This is Rietveld 408576698