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

Unified Diff: device/geolocation/fake_location_provider.h

Issue 2249283003: Hooks together Geolocation Feature in the Client and Engine. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lai
Patch Set: Addresses nyquist's #9 comments. Created 4 years, 4 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: device/geolocation/fake_location_provider.h
diff --git a/device/geolocation/fake_location_provider.h b/device/geolocation/fake_location_provider.h
index 473844e830c946e4236c42c958f263f7c5c6da60..eaae9b6dc22010ce5791a7745191c07721becf7e 100644
--- a/device/geolocation/fake_location_provider.h
+++ b/device/geolocation/fake_location_provider.h
@@ -23,11 +23,11 @@ class FakeLocationProvider : public LocationProviderBase {
FakeLocationProvider();
~FakeLocationProvider() override;
+ bool IsProviderStarted() const;
Wez 2016/08/19 23:12:10 nit: Why is this moved in this CL?
CJ 2016/08/22 20:28:08 Not sure. It's not used anymore I think though, so
+
// Updates listeners with the new position.
void HandlePositionChanged(const Geoposition& position);
- bool IsProviderStarted() const;
-
// LocationProvider implementation.
bool StartProvider(bool high_accuracy) override;
void StopProvider() override;

Powered by Google App Engine
This is Rietveld 408576698