| Index: third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.cpp
|
| diff --git a/third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.cpp b/third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.cpp
|
| index a9526ed18e078fee7096b1e78febd2497874591e..e74f11ab4ec1e58ef52c43a935628c3e5065a634 100644
|
| --- a/third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.cpp
|
| +++ b/third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.cpp
|
| @@ -31,7 +31,7 @@
|
| namespace blink {
|
|
|
| NavigatorGeolocation::NavigatorGeolocation(LocalFrame* frame)
|
| - : DOMWindowProperty(frame) {}
|
| + : ContextClient(frame) {}
|
|
|
| const char* NavigatorGeolocation::supplementName() {
|
| return "NavigatorGeolocation";
|
| @@ -60,7 +60,7 @@ Geolocation* NavigatorGeolocation::geolocation() {
|
| DEFINE_TRACE(NavigatorGeolocation) {
|
| visitor->trace(m_geolocation);
|
| Supplement<Navigator>::trace(visitor);
|
| - DOMWindowProperty::trace(visitor);
|
| + ContextClient::trace(visitor);
|
| }
|
|
|
| } // namespace blink
|
|
|