Index: public/web/WebGeolocationController.h |
diff --git a/public/web/WebGeolocationController.h b/public/web/WebGeolocationController.h |
index 96ca9e8dabd4a89f636b2fed3af275c8280fe897..2c36720737245a97c68e03921431323a3e4c0181 100644 |
--- a/public/web/WebGeolocationController.h |
+++ b/public/web/WebGeolocationController.h |
@@ -48,7 +48,7 @@ public: |
{ |
} |
- blink::GeolocationController* controller() const { return m_private; } |
+ GeolocationController* controller() const { return m_private; } |
#endif |
private: |
@@ -56,6 +56,8 @@ private: |
// can be created by the consumers of Chromium WebKit. |
WebGeolocationController(); |
+ // This bare pointer is owned and kept alive by the frame of the |
+ // WebLocalFrame which creates this controller object. |
GeolocationController* m_private; |
}; |