| Index: public/web/WebGeolocationController.h
|
| diff --git a/public/web/WebGeolocationController.h b/public/web/WebGeolocationController.h
|
| index 04d5be8616d5d30265f2ab2d751b9339940d9ab4..96ca9e8dabd4a89f636b2fed3af275c8280fe897 100644
|
| --- a/public/web/WebGeolocationController.h
|
| +++ b/public/web/WebGeolocationController.h
|
| @@ -29,10 +29,9 @@
|
| #include "../platform/WebCommon.h"
|
| #include "../platform/WebNonCopyable.h"
|
|
|
| -namespace blink { class GeolocationController; }
|
| -
|
| namespace blink {
|
|
|
| +class GeolocationController;
|
| class WebGeolocationPosition;
|
| class WebGeolocationError;
|
|
|
| @@ -44,7 +43,7 @@ public:
|
| BLINK_EXPORT void errorOccurred(const WebGeolocationError&);
|
|
|
| #if BLINK_IMPLEMENTATION
|
| - WebGeolocationController(blink::GeolocationController* c)
|
| + WebGeolocationController(GeolocationController* c)
|
| : m_private(c)
|
| {
|
| }
|
| @@ -57,7 +56,7 @@ private:
|
| // can be created by the consumers of Chromium WebKit.
|
| WebGeolocationController();
|
|
|
| - blink::GeolocationController* m_private;
|
| + GeolocationController* m_private;
|
| };
|
|
|
| } // namespace blink
|
|
|