diff options
author | allanwoj@chromium.org <allanwoj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-06 13:01:58 +0000 |
---|---|---|
committer | allanwoj@chromium.org <allanwoj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-06 13:01:58 +0000 |
commit | 9dc8cf77eac81836255d0fbc60964c65eeaa491b (patch) | |
tree | 0b7d68821cd4df09fb7bc41bcb0ca4a1014b1f58 /content/browser/geolocation/network_location_request.h | |
parent | 335c0f18fe2fef97117e7a11ad6c540ac864745e (diff) | |
download | chromium_src-9dc8cf77eac81836255d0fbc60964c65eeaa491b.zip chromium_src-9dc8cf77eac81836255d0fbc60964c65eeaa491b.tar.gz chromium_src-9dc8cf77eac81836255d0fbc60964c65eeaa491b.tar.bz2 |
Remove gateway data providers for location service.
The new location service does not support gateway data, so I've removed all gateway related code.
BUG=58277
TEST=None
Review URL: http://codereview.chromium.org/7737028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99728 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/geolocation/network_location_request.h')
-rw-r--r-- | content/browser/geolocation/network_location_request.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/content/browser/geolocation/network_location_request.h b/content/browser/geolocation/network_location_request.h index 5da0e50..0694052 100644 --- a/content/browser/geolocation/network_location_request.h +++ b/content/browser/geolocation/network_location_request.h @@ -39,7 +39,6 @@ class NetworkLocationRequest : private URLFetcher::Delegate { const Geoposition& position, bool server_error, const string16& access_token, - const GatewayData& gateway_data, const RadioData& radio_data, const WifiData& wifi_data) = 0; @@ -57,7 +56,6 @@ class NetworkLocationRequest : private URLFetcher::Delegate { // started. In all cases, any currently pending request will be canceled. bool MakeRequest(const std::string& host, const string16& access_token, - const GatewayData& gateway_data, const RadioData& radio_data, const WifiData& wifi_data, const base::Time& timestamp); @@ -81,7 +79,6 @@ class NetworkLocationRequest : private URLFetcher::Delegate { // Keep a copy of the data sent in the request, so we can refer back to it // when the response arrives. - GatewayData gateway_data_; RadioData radio_data_; WifiData wifi_data_; base::Time timestamp_; // Timestamp of the above data, not of the request. |