Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(484)

Side by Side Diff: content/browser/geolocation/network_location_request.cc

Issue 6677096: Move a bunch of files from chrome\common to content\common. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/geolocation/network_location_request.h" 5 #include "content/browser/geolocation/network_location_request.h"
6 6
7 #include "base/json/json_reader.h" 7 #include "base/json/json_reader.h"
8 #include "base/json/json_writer.h" 8 #include "base/json/json_writer.h"
9 #include "base/string_number_conversions.h" 9 #include "base/string_number_conversions.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 #include "base/values.h" 11 #include "base/values.h"
12 #include "chrome/common/geoposition.h"
13 #include "chrome/common/net/url_request_context_getter.h" 12 #include "chrome/common/net/url_request_context_getter.h"
13 #include "content/common/geoposition.h"
14 #include "net/base/load_flags.h" 14 #include "net/base/load_flags.h"
15 #include "net/url_request/url_request_status.h" 15 #include "net/url_request/url_request_status.h"
16 16
17 namespace { 17 namespace {
18 const char kMimeApplicationJson[] = "application/json"; 18 const char kMimeApplicationJson[] = "application/json";
19 19
20 // See http://code.google.com/apis/gears/geolocation_network_protocol.html 20 // See http://code.google.com/apis/gears/geolocation_network_protocol.html
21 const char kGeoLocationNetworkProtocolVersion[] = "1.1.0"; 21 const char kGeoLocationNetworkProtocolVersion[] = "1.1.0";
22 22
23 const char kAccessTokenString[] = "access_token"; 23 const char kAccessTokenString[] = "access_token";
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 gateway_data.router_data.begin(); 443 gateway_data.router_data.begin();
444 iter != gateway_data.router_data.end(); 444 iter != gateway_data.router_data.end();
445 iter++) { 445 iter++) {
446 DictionaryValue* gateway = new DictionaryValue; 446 DictionaryValue* gateway = new DictionaryValue;
447 AddString("mac_address", iter->mac_address, gateway); 447 AddString("mac_address", iter->mac_address, gateway);
448 gateways->Append(gateway); 448 gateways->Append(gateway);
449 } 449 }
450 body_object->Set("gateways", gateways); 450 body_object->Set("gateways", gateways);
451 } 451 }
452 } // namespace 452 } // namespace
OLDNEW
« no previous file with comments | « content/browser/geolocation/network_location_provider.h ('k') | content/browser/geolocation/win7_location_api_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698