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

Side by Side Diff: chrome/browser/chromeos/contacts/gdata_contacts_service.cc

Issue 15798019: Use a direct include of strings headers in chrome/browser/chromeos/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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) 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 "chrome/browser/chromeos/contacts/gdata_contacts_service.h" 5 #include "chrome/browser/chromeos/contacts/gdata_contacts_service.h"
6 6
7 #include <cstring> 7 #include <cstring>
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
11 11
12 #include "base/json/json_value_converter.h" 12 #include "base/json/json_value_converter.h"
13 #include "base/json/json_writer.h" 13 #include "base/json/json_writer.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/memory/weak_ptr.h" 15 #include "base/memory/weak_ptr.h"
16 #include "base/metrics/histogram.h" 16 #include "base/metrics/histogram.h"
17 #include "base/stl_util.h" 17 #include "base/stl_util.h"
18 #include "base/string_util.h" 18 #include "base/strings/string_util.h"
19 #include "base/time.h" 19 #include "base/time.h"
20 #include "base/timer.h" 20 #include "base/timer.h"
21 #include "base/values.h" 21 #include "base/values.h"
22 #include "chrome/browser/chromeos/contacts/contact.pb.h" 22 #include "chrome/browser/chromeos/contacts/contact.pb.h"
23 #include "chrome/browser/google_apis/gdata_contacts_requests.h" 23 #include "chrome/browser/google_apis/gdata_contacts_requests.h"
24 #include "chrome/browser/google_apis/gdata_errorcode.h" 24 #include "chrome/browser/google_apis/gdata_errorcode.h"
25 #include "chrome/browser/google_apis/request_sender.h" 25 #include "chrome/browser/google_apis/request_sender.h"
26 #include "chrome/browser/google_apis/time_util.h" 26 #include "chrome/browser/google_apis/time_util.h"
27 #include "content/public/browser/browser_thread.h" 27 #include "content/public/browser/browser_thread.h"
28 28
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); 905 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
906 DCHECK(request); 906 DCHECK(request);
907 VLOG(1) << "Download request " << request << " complete"; 907 VLOG(1) << "Download request " << request << " complete";
908 if (!request->my_contacts_group_id().empty()) 908 if (!request->my_contacts_group_id().empty())
909 cached_my_contacts_group_id_ = request->my_contacts_group_id(); 909 cached_my_contacts_group_id_ = request->my_contacts_group_id();
910 requests_.erase(request); 910 requests_.erase(request);
911 delete request; 911 delete request;
912 } 912 }
913 913
914 } // namespace contacts 914 } // namespace contacts
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698