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

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

Issue 2629593004: Disambiguate LifecycleObserver::contextDestroyed (Closed)
Patch Set: temp 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
Index: third_party/WebKit/Source/modules/geolocation/Geolocation.h
diff --git a/third_party/WebKit/Source/modules/geolocation/Geolocation.h b/third_party/WebKit/Source/modules/geolocation/Geolocation.h
index b4ce6f024d39213488c99a2b62894e3f4bbe8cae..7eb7c86894b6032b8f8b1f2c621a9010ea84ae40 100644
--- a/third_party/WebKit/Source/modules/geolocation/Geolocation.h
+++ b/third_party/WebKit/Source/modules/geolocation/Geolocation.h
@@ -64,8 +64,9 @@ class MODULES_EXPORT Geolocation final
~Geolocation();
DECLARE_VIRTUAL_TRACE();
- // Inherited from ContextLifecycleObserver AND PageVisibilityObserver.
- void contextDestroyed() override;
+ // Inherited from ContextLifecycleObserver and PageVisibilityObserver.
+ void contextDestroyed(ExecutionContext*) override;
+ void contextDestroyed(Page*) override;
Document* document() const;
LocalFrame* frame() const;

Powered by Google App Engine
This is Rietveld 408576698