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

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

Issue 1919153002: Tidy up WebGeolocationController. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: still support implicit conversion Created 4 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: third_party/WebKit/Source/modules/geolocation/Geoposition.h
diff --git a/third_party/WebKit/Source/modules/geolocation/Geoposition.h b/third_party/WebKit/Source/modules/geolocation/Geoposition.h
index 0f20fccc05d74dfa8bd3def9d0e2bbc3e450a48f..dc093e02d56d44b59a16e3ffa6fe6ef341851b4b 100644
--- a/third_party/WebKit/Source/modules/geolocation/Geoposition.h
+++ b/third_party/WebKit/Source/modules/geolocation/Geoposition.h
@@ -47,7 +47,7 @@ public:
}
DOMTimeStamp timestamp() const { return m_timestamp; }
- Coordinates* coords() const { return m_coordinates.get(); }
+ Coordinates* coords() const { return m_coordinates; }
private:
Geoposition(Coordinates* coordinates, DOMTimeStamp timestamp)

Powered by Google App Engine
This is Rietveld 408576698