Chromium Code Reviews| Index: third_party/WebKit/public/web/WebGeolocationController.h |
| diff --git a/third_party/WebKit/public/web/WebGeolocationController.h b/third_party/WebKit/public/web/WebGeolocationController.h |
| index 36fb3691901fb165aa3d4cbbdb5d9d5f80a132a4..8497bcaa93e6991a731b955b14888fb1ccac6b39 100644 |
| --- a/third_party/WebKit/public/web/WebGeolocationController.h |
| +++ b/third_party/WebKit/public/web/WebGeolocationController.h |
| @@ -33,7 +33,6 @@ |
| namespace blink { |
| class GeolocationController; |
| -class GeolocationControllerPrivate; |
| class WebGeolocationPosition; |
| class WebGeolocationError; |
| @@ -45,7 +44,7 @@ public: |
| BLINK_EXPORT void errorOccurred(const WebGeolocationError&); |
| #if BLINK_IMPLEMENTATION |
| - WebGeolocationController(GeolocationController*); |
| + explicit WebGeolocationController(GeolocationController*); |
|
tkent
2016/04/26 12:49:22
We usually allow implicit conversion between an in
|
| #endif |
| private: |
| @@ -55,7 +54,7 @@ private: |
| BLINK_EXPORT void reset(); |
| - WebPrivatePtr<GeolocationControllerPrivate> m_private; |
| + WebPrivatePtr<GeolocationController> m_private; |
| }; |
| } // namespace blink |