OLD | NEW |
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/gdata/gdata_contacts_service.h" | 5 #include "chrome/browser/chromeos/gdata/gdata_contacts_service.h" |
6 | 6 |
7 #include <cstring> | 7 #include <cstring> |
8 #include <string> | 8 #include <string> |
9 #include <map> | 9 #include <map> |
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/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/chromeos/gdata/gdata_errorcode.h" |
23 #include "chrome/browser/chromeos/gdata/gdata_operations.h" | 24 #include "chrome/browser/chromeos/gdata/gdata_operations.h" |
24 #include "chrome/browser/chromeos/gdata/gdata_util.h" | 25 #include "chrome/browser/chromeos/gdata/gdata_util.h" |
25 #include "chrome/browser/chromeos/gdata/operation_registry.h" | 26 #include "chrome/browser/chromeos/gdata/operation_registry.h" |
26 #include "chrome/browser/chromeos/gdata/operation_runner.h" | 27 #include "chrome/browser/chromeos/gdata/operation_runner.h" |
27 #include "content/public/browser/browser_thread.h" | 28 #include "content/public/browser/browser_thread.h" |
28 | 29 |
29 using content::BrowserThread; | 30 using content::BrowserThread; |
30 | 31 |
31 namespace gdata { | 32 namespace gdata { |
32 | 33 |
(...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 887 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
887 DCHECK(request); | 888 DCHECK(request); |
888 VLOG(1) << "Download request " << request << " complete"; | 889 VLOG(1) << "Download request " << request << " complete"; |
889 if (!request->my_contacts_group_id().empty()) | 890 if (!request->my_contacts_group_id().empty()) |
890 cached_my_contacts_group_id_ = request->my_contacts_group_id(); | 891 cached_my_contacts_group_id_ = request->my_contacts_group_id(); |
891 requests_.erase(request); | 892 requests_.erase(request); |
892 delete request; | 893 delete request; |
893 } | 894 } |
894 | 895 |
895 } // namespace contacts | 896 } // namespace contacts |
OLD | NEW |