| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_SYNC_GLUE_SYNC_BACKEND_HOST_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | |
| 11 #include <string> | 10 #include <string> |
| 12 #include <vector> | 11 #include <vector> |
| 13 | 12 |
| 14 #include "base/file_path.h" | 13 #include "base/file_path.h" |
| 15 #include "base/lock.h" | 14 #include "base/lock.h" |
| 16 #include "base/message_loop.h" | 15 #include "base/message_loop.h" |
| 17 #include "base/ref_counted.h" | 16 #include "base/ref_counted.h" |
| 18 #include "base/thread.h" | 17 #include "base/thread.h" |
| 19 #include "base/timer.h" | 18 #include "base/timer.h" |
| 20 #include "chrome/browser/google_service_auth_error.h" | 19 #include "chrome/browser/google_service_auth_error.h" |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 | 472 |
| 474 // Whether we've processed the initialization complete callback. | 473 // Whether we've processed the initialization complete callback. |
| 475 bool syncapi_initialized_; | 474 bool syncapi_initialized_; |
| 476 | 475 |
| 477 DISALLOW_COPY_AND_ASSIGN(SyncBackendHost); | 476 DISALLOW_COPY_AND_ASSIGN(SyncBackendHost); |
| 478 }; | 477 }; |
| 479 | 478 |
| 480 } // namespace browser_sync | 479 } // namespace browser_sync |
| 481 | 480 |
| 482 #endif // CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ | 481 #endif // CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ |
| OLD | NEW |