| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #if defined(BROWSER_SYNC) | |
| 6 | |
| 7 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ |
| 8 #define CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ |
| 9 | 7 |
| 10 #include <string> | 8 #include <string> |
| 11 | 9 |
| 12 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| 13 #include "base/lock.h" | 11 #include "base/lock.h" |
| 14 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
| 15 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
| 16 #include "base/thread.h" | 14 #include "base/thread.h" |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 | 279 |
| 282 // UI-thread cache of the last AuthErrorState received from syncapi. | 280 // UI-thread cache of the last AuthErrorState received from syncapi. |
| 283 AuthErrorState last_auth_error_; | 281 AuthErrorState last_auth_error_; |
| 284 | 282 |
| 285 DISALLOW_COPY_AND_ASSIGN(SyncBackendHost); | 283 DISALLOW_COPY_AND_ASSIGN(SyncBackendHost); |
| 286 }; | 284 }; |
| 287 | 285 |
| 288 } // namespace browser_sync | 286 } // namespace browser_sync |
| 289 | 287 |
| 290 #endif // CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ | 288 #endif // CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ |
| 291 #endif // defined(BROWSER_SYNC) | |
| OLD | NEW |