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

Unified Diff: Source/modules/geolocation/PositionOptions.h

Issue 348253003: Remove unused functions in PositionOptions (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/geolocation/PositionOptions.h
diff --git a/Source/modules/geolocation/PositionOptions.h b/Source/modules/geolocation/PositionOptions.h
index 046e460599c12ea84f17e76196636926eed08051..eaec44864a3abe6b50e531b5fd7b380a76fda27f 100644
--- a/Source/modules/geolocation/PositionOptions.h
+++ b/Source/modules/geolocation/PositionOptions.h
@@ -38,23 +38,8 @@ public:
void trace(Visitor*) { }
bool enableHighAccuracy() const { return m_highAccuracy; }
- void setEnableHighAccuracy(bool enable) { m_highAccuracy = enable; }
- unsigned timeout() const
- {
- return m_timeout;
- }
- void setTimeout(unsigned timeout)
- {
- m_timeout = timeout;
- }
- unsigned maximumAge() const
- {
- return m_maximumAge;
- }
- void setMaximumAge(unsigned age)
- {
- m_maximumAge = age;
- }
+ unsigned timeout() const { return m_timeout; }
+ unsigned maximumAge() const { return m_maximumAge; }
private:
explicit PositionOptions(const Dictionary&);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698