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_PASSWORD_MODEL_WORKER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_PASSWORD_MODEL_WORKER_H_ |
6 #define CHROME_BROWSER_SYNC_GLUE_PASSWORD_MODEL_WORKER_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_PASSWORD_MODEL_WORKER_H_ |
7 #pragma once | |
8 | 7 |
9 #include "sync/internal_api/public/engine/model_safe_worker.h" | 8 #include "sync/internal_api/public/engine/model_safe_worker.h" |
10 | 9 |
11 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
12 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
13 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
14 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
15 | 14 |
16 class PasswordStore; | 15 class PasswordStore; |
17 | 16 |
(...skipping 24 matching lines...) Expand all Loading... |
42 base::WaitableEvent* done, | 41 base::WaitableEvent* done, |
43 syncer::SyncerError* error); | 42 syncer::SyncerError* error); |
44 | 43 |
45 scoped_refptr<PasswordStore> password_store_; | 44 scoped_refptr<PasswordStore> password_store_; |
46 DISALLOW_COPY_AND_ASSIGN(PasswordModelWorker); | 45 DISALLOW_COPY_AND_ASSIGN(PasswordModelWorker); |
47 }; | 46 }; |
48 | 47 |
49 } // namespace browser_sync | 48 } // namespace browser_sync |
50 | 49 |
51 #endif // CHROME_BROWSER_SYNC_GLUE_PASSWORD_MODEL_WORKER_H_ | 50 #endif // CHROME_BROWSER_SYNC_GLUE_PASSWORD_MODEL_WORKER_H_ |
OLD | NEW |