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

Unified Diff: Source/modules/geolocation/GeolocationClient.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 layouttest, fix webkit_unit_tests crash, remove obsolete layout test Created 6 years, 8 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: Source/modules/geolocation/GeolocationClient.h
diff --git a/Source/modules/geolocation/GeolocationClient.h b/Source/modules/geolocation/GeolocationClient.h
index 14533c622b4d34371ed4c52cfbc6bf4888aec01f..c7e5a1ed9d4d851c710f0ded401049096eebddd0 100644
--- a/Source/modules/geolocation/GeolocationClient.h
+++ b/Source/modules/geolocation/GeolocationClient.h
@@ -30,7 +30,7 @@ namespace WebCore {
class Geolocation;
class GeolocationPosition;
-class Page;
+class LocalFrame;
class GeolocationClient {
public:
@@ -48,7 +48,7 @@ protected:
virtual ~GeolocationClient() { }
};
-void provideGeolocationTo(Page&, GeolocationClient*);
+void provideGeolocationTo(LocalFrame&, GeolocationClient*);
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698