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

Unified Diff: public/web/WebFrameClient.h

Issue 256843004: Get the WebGeolocationClient from WebFrameClient instead of WebViewClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix linking errors Created 6 years, 7 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: public/web/WebFrameClient.h
diff --git a/public/web/WebFrameClient.h b/public/web/WebFrameClient.h
index ea97506265bad7b436a2303c62dd1747269e825e..997c64491804c3ecf5ee454245b998fac5bbe2de 100644
--- a/public/web/WebFrameClient.h
+++ b/public/web/WebFrameClient.h
@@ -63,6 +63,7 @@ class WebCookieJar;
class WebDataSource;
class WebDOMEvent;
class WebFormElement;
+class WebGeolocationClient;
class WebInputEvent;
class WebMediaPlayer;
class WebMediaPlayerClient;
@@ -449,6 +450,12 @@ public:
virtual void willOpenWebSocket(WebSocketHandle*) { }
+ // Geolocation ---------------------------------------------------------
+
+ // Access the embedder API for (client-based) geolocation client .
+ virtual WebGeolocationClient* geolocationClient() { return 0; }
+
+
// MediaStream -----------------------------------------------------
// A new WebRTCPeerConnectionHandler is created.

Powered by Google App Engine
This is Rietveld 408576698