summaryrefslogtreecommitdiffstats
path: root/content/browser/geolocation/network_location_request.h
diff options
context:
space:
mode:
authorjoth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-13 20:07:55 +0000
committerjoth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-13 20:07:55 +0000
commitdb0d2edeb44682531b95083ab394d993d3849682 (patch)
treed9a0d2069152c07a4c2c994b76ccb66f182622b6 /content/browser/geolocation/network_location_request.h
parent8bbc4ca8d1c5f1905efc992db966f792e647357b (diff)
downloadchromium_src-db0d2edeb44682531b95083ab394d993d3849682.zip
chromium_src-db0d2edeb44682531b95083ab394d993d3849682.tar.gz
chromium_src-db0d2edeb44682531b95083ab394d993d3849682.tar.bz2
Remove RadioData from geolocation
This has never been used. Removing it closes some TODOs, and allows for futher cleanup. BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10534120 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141951 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/geolocation/network_location_request.h')
-rw-r--r--content/browser/geolocation/network_location_request.h3
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 1f12285..6f0c3a6 100644
--- a/content/browser/geolocation/network_location_request.h
+++ b/content/browser/geolocation/network_location_request.h
@@ -38,7 +38,6 @@ class NetworkLocationRequest : private net::URLFetcherDelegate {
const content::Geoposition& position,
bool server_error,
const string16& access_token,
- const RadioData& radio_data,
const WifiData& wifi_data) = 0;
protected:
@@ -54,7 +53,6 @@ class NetworkLocationRequest : private net::URLFetcherDelegate {
// Makes a new request. Returns true if the new request was successfully
// started. In all cases, any currently pending request will be canceled.
bool MakeRequest(const string16& access_token,
- const RadioData& radio_data,
const WifiData& wifi_data,
const base::Time& timestamp);
@@ -72,7 +70,6 @@ class NetworkLocationRequest : private net::URLFetcherDelegate {
// Keep a copy of the data sent in the request, so we can refer back to it
// when the response arrives.
- RadioData radio_data_;
WifiData wifi_data_;
base::Time timestamp_; // Timestamp of the above data, not of the request.