diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-25 22:34:14 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-25 22:34:14 +0000 |
commit | 9afc14e2f54eaa5f75827542e73b430418f0c412 (patch) | |
tree | 76ef99cbd440b5bcf7711e5360c232053c6cd618 /content/browser/geolocation | |
parent | d0e6d8e4a72f1ae7b518c921b5b359fdbb2874d2 (diff) | |
download | chromium_src-9afc14e2f54eaa5f75827542e73b430418f0c412.zip chromium_src-9afc14e2f54eaa5f75827542e73b430418f0c412.tar.gz chromium_src-9afc14e2f54eaa5f75827542e73b430418f0c412.tar.bz2 |
Clean up a few more unused globals.
Found by clang's new -Wunused-const-variable.
BUG=290204
R=akalin@chromium.org, avi@chromium.org, isherman@chromium.org, jamesr@chromium.org, joi@chromium.org, sergeyu@chromium.org, sky@chromium.org, thestig@chromium.org, xhwang@chromium.org
Review URL: https://codereview.chromium.org/24649002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@225273 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/geolocation')
-rw-r--r-- | content/browser/geolocation/network_location_request.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/content/browser/geolocation/network_location_request.cc b/content/browser/geolocation/network_location_request.cc index f15141a..94074be 100644 --- a/content/browser/geolocation/network_location_request.cc +++ b/content/browser/geolocation/network_location_request.cc @@ -25,15 +25,11 @@ namespace content { namespace { -const size_t kMaxRequestLength = 2048; - const char kAccessTokenString[] = "accessToken"; const char kLocationString[] = "location"; const char kLatitudeString[] = "lat"; const char kLongitudeString[] = "lng"; const char kAccuracyString[] = "accuracy"; -const char kStatusString[] = "status"; -const char kStatusOKString[] = "OK"; // Local functions // Creates the request url to send to the server. |