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

Side by Side Diff: sync/engine/net/server_connection_manager.cc

Issue 18919005: Migrate from googleurl/ includes to url/ ones in the remaining top-level directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make googleurl a temp include rule - to prevent others including it again Created 7 years, 5 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
« no previous file with comments | « rlz/lib/financial_ping.cc ('k') | sync/internal_api/public/base_node.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "sync/engine/net/server_connection_manager.h" 5 #include "sync/engine/net/server_connection_manager.h"
6 6
7 #include <errno.h> 7 #include <errno.h>
8 8
9 #include <ostream> 9 #include <ostream>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/metrics/histogram.h" 13 #include "base/metrics/histogram.h"
14 #include "build/build_config.h" 14 #include "build/build_config.h"
15 #include "googleurl/src/gurl.h"
16 #include "net/base/net_errors.h" 15 #include "net/base/net_errors.h"
17 #include "net/http/http_status_code.h" 16 #include "net/http/http_status_code.h"
18 #include "sync/engine/net/url_translator.h" 17 #include "sync/engine/net/url_translator.h"
19 #include "sync/engine/syncer.h" 18 #include "sync/engine/syncer.h"
20 #include "sync/protocol/sync.pb.h" 19 #include "sync/protocol/sync.pb.h"
21 #include "sync/syncable/directory.h" 20 #include "sync/syncable/directory.h"
21 #include "url/gurl.h"
22 22
23 namespace syncer { 23 namespace syncer {
24 24
25 using std::ostream; 25 using std::ostream;
26 using std::string; 26 using std::string;
27 using std::vector; 27 using std::vector;
28 28
29 static const char kSyncServerSyncPath[] = "/command/"; 29 static const char kSyncServerSyncPath[] = "/command/";
30 30
31 HttpResponse::HttpResponse() 31 HttpResponse::HttpResponse()
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 357
358 std::ostream& operator << (std::ostream& s, const struct HttpResponse& hr) { 358 std::ostream& operator << (std::ostream& s, const struct HttpResponse& hr) {
359 s << " Response Code (bogus on error): " << hr.response_code; 359 s << " Response Code (bogus on error): " << hr.response_code;
360 s << " Content-Length (bogus on error): " << hr.content_length; 360 s << " Content-Length (bogus on error): " << hr.content_length;
361 s << " Server Status: " 361 s << " Server Status: "
362 << HttpResponse::GetServerConnectionCodeString(hr.server_status); 362 << HttpResponse::GetServerConnectionCodeString(hr.server_status);
363 return s; 363 return s;
364 } 364 }
365 365
366 } // namespace syncer 366 } // namespace syncer
OLDNEW
« no previous file with comments | « rlz/lib/financial_ping.cc ('k') | sync/internal_api/public/base_node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698