| 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 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_GDATA_CONTACTS_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_GDATA_CONTACTS_SERVICE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_CONTACTS_SERVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_CONTACTS_SERVICE_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/memory/scoped_vector.h" | 16 #include "base/memory/scoped_vector.h" |
| 17 #include "base/time.h" | 17 #include "base/time.h" |
| 18 #include "chrome/browser/chromeos/gdata/gdata_errorcode.h" | |
| 19 #include "googleurl/src/gurl.h" | 18 #include "googleurl/src/gurl.h" |
| 20 | 19 |
| 21 class Profile; | 20 class Profile; |
| 22 | 21 |
| 23 namespace base { | 22 namespace base { |
| 24 class Value; | 23 class Value; |
| 25 } | 24 } |
| 26 | 25 |
| 27 namespace contacts { | 26 namespace contacts { |
| 28 class Contact; | 27 class Contact; |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 // This is needed for tests that serve static feed data from a host/port | 132 // This is needed for tests that serve static feed data from a host/port |
| 134 // that's only known at runtime. | 133 // that's only known at runtime. |
| 135 RewritePhotoUrlCallback rewrite_photo_url_callback_for_testing_; | 134 RewritePhotoUrlCallback rewrite_photo_url_callback_for_testing_; |
| 136 | 135 |
| 137 DISALLOW_COPY_AND_ASSIGN(GDataContactsService); | 136 DISALLOW_COPY_AND_ASSIGN(GDataContactsService); |
| 138 }; | 137 }; |
| 139 | 138 |
| 140 } // namespace gdata | 139 } // namespace gdata |
| 141 | 140 |
| 142 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_CONTACTS_SERVICE_H_ | 141 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_CONTACTS_SERVICE_H_ |
| OLD | NEW |