diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-29 03:01:49 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-29 03:01:49 +0000 |
commit | 6bd4083b2fbaa7eb92a549aa2c78950adee2ae9e (patch) | |
tree | 107491ca0b140e596c9e7d5ceb4b200d31f8d607 /content/browser/geolocation/wifi_data_provider_win.cc | |
parent | 95e8108cbc0c398b9499c54974d49ebabeb3be00 (diff) | |
download | chromium_src-6bd4083b2fbaa7eb92a549aa2c78950adee2ae9e.zip chromium_src-6bd4083b2fbaa7eb92a549aa2c78950adee2ae9e.tar.gz chromium_src-6bd4083b2fbaa7eb92a549aa2c78950adee2ae9e.tar.bz2 |
Move geolocation code to content namespace.
TBR=scottmg
Review URL: https://codereview.chromium.org/11276058
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164586 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/geolocation/wifi_data_provider_win.cc')
-rw-r--r-- | content/browser/geolocation/wifi_data_provider_win.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/content/browser/geolocation/wifi_data_provider_win.cc b/content/browser/geolocation/wifi_data_provider_win.cc index 8837c2ec..3140321 100644 --- a/content/browser/geolocation/wifi_data_provider_win.cc +++ b/content/browser/geolocation/wifi_data_provider_win.cc @@ -36,6 +36,7 @@ #define NDIS_STATUS_INVALID_LENGTH ((NDIS_STATUS)0xC0010014L) #define NDIS_STATUS_BUFFER_TOO_SHORT ((NDIS_STATUS)0xC0010016L) +namespace content { namespace { // The limits on the size of the buffer used for the OID query. const int kInitialBufferSize = 2 << 12; // Good for about 50 APs. @@ -605,3 +606,5 @@ bool GetSystemDirectory(string16* path) { return true; } } // namespace + +} // namespace content |