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

Unified Diff: third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.h

Issue 2618773004: Remove ContextClient from NavigatorGeolocation (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.h
diff --git a/third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.h b/third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.h
index 6916e2679d7a5619a0744ee3193e6a1f2f6d6cd0..424fcf7cfeb1ba6d40feb2c2752790346bd0f02b 100644
--- a/third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.h
+++ b/third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.h
@@ -20,21 +20,18 @@
#ifndef NavigatorGeolocation_h
#define NavigatorGeolocation_h
-#include "core/dom/ContextLifecycleObserver.h"
#include "core/frame/Navigator.h"
#include "platform/Supplementable.h"
#include "platform/heap/Handle.h"
namespace blink {
-class LocalFrame;
class Geolocation;
class Navigator;
class NavigatorGeolocation final
: public GarbageCollected<NavigatorGeolocation>,
- public Supplement<Navigator>,
- public ContextClient {
+ public Supplement<Navigator> {
USING_GARBAGE_COLLECTED_MIXIN(NavigatorGeolocation);
public:
@@ -45,7 +42,7 @@ class NavigatorGeolocation final
DECLARE_TRACE();
private:
- explicit NavigatorGeolocation(LocalFrame*);
+ explicit NavigatorGeolocation(Navigator&);
static const char* supplementName();
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698