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_SYNC_GLUE_BROWSER_THREAD_MODEL_WORKER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_BROWSER_THREAD_MODEL_WORKER_H_ |
6 #define CHROME_BROWSER_SYNC_GLUE_BROWSER_THREAD_MODEL_WORKER_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_BROWSER_THREAD_MODEL_WORKER_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
10 #include "base/callback_forward.h" | 9 #include "base/callback_forward.h" |
11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
12 #include "content/public/browser/browser_thread.h" | 11 #include "content/public/browser/browser_thread.h" |
13 #include "sync/internal_api/public/engine/model_safe_worker.h" | 12 #include "sync/internal_api/public/engine/model_safe_worker.h" |
14 #include "sync/internal_api/public/util/syncer_error.h" | 13 #include "sync/internal_api/public/util/syncer_error.h" |
15 | 14 |
16 namespace base { | 15 namespace base { |
17 class WaitableEvent; | 16 class WaitableEvent; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 base::WaitableEvent* done, | 77 base::WaitableEvent* done, |
79 syncer::SyncerError* error) OVERRIDE; | 78 syncer::SyncerError* error) OVERRIDE; |
80 | 79 |
81 private: | 80 private: |
82 virtual ~FileModelWorker(); | 81 virtual ~FileModelWorker(); |
83 }; | 82 }; |
84 | 83 |
85 } // namespace browser_sync | 84 } // namespace browser_sync |
86 | 85 |
87 #endif // CHROME_BROWSER_SYNC_GLUE_BROWSER_THREAD_MODEL_WORKER_H_ | 86 #endif // CHROME_BROWSER_SYNC_GLUE_BROWSER_THREAD_MODEL_WORKER_H_ |
OLD | NEW |