WebCore/page/GeolocationControllerClient.h
changeset 2 303757a437d3
parent 0 4f2f89ce4247
equal deleted inserted replaced
0:4f2f89ce4247 2:303757a437d3
    34 public:
    34 public:
    35     virtual void geolocationDestroyed() = 0;
    35     virtual void geolocationDestroyed() = 0;
    36 
    36 
    37     virtual void startUpdating() = 0;
    37     virtual void startUpdating() = 0;
    38     virtual void stopUpdating() = 0;
    38     virtual void stopUpdating() = 0;
       
    39     // FIXME: The V2 Geolocation specification proposes that this property is
       
    40     // renamed. See http://www.w3.org/2008/geolocation/track/issues/6
       
    41     // We should update WebKit to reflect this if and when the V2 specification
       
    42     // is published.
       
    43     virtual void setEnableHighAccuracy(bool) = 0;
    39     virtual GeolocationPosition* lastPosition() = 0;
    44     virtual GeolocationPosition* lastPosition() = 0;
    40 
    45 
    41 protected:
    46 protected:
    42     virtual ~GeolocationControllerClient() { }
    47     virtual ~GeolocationControllerClient() { }
    43 };
    48 };