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 #include "components/sync_driver/glue/ui_model_worker.h" | 5 #include "components/sync/driver/glue/ui_model_worker.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "base/synchronization/waitable_event.h" | 10 #include "base/synchronization/waitable_event.h" |
11 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" | 11 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" |
12 #include "base/threading/thread_restrictions.h" | 12 #include "base/threading/thread_restrictions.h" |
13 | 13 |
14 namespace browser_sync { | 14 namespace browser_sync { |
15 | 15 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 return error_info; | 69 return error_info; |
70 } | 70 } |
71 | 71 |
72 syncer::ModelSafeGroup UIModelWorker::GetModelSafeGroup() { | 72 syncer::ModelSafeGroup UIModelWorker::GetModelSafeGroup() { |
73 return syncer::GROUP_UI; | 73 return syncer::GROUP_UI; |
74 } | 74 } |
75 | 75 |
76 UIModelWorker::~UIModelWorker() {} | 76 UIModelWorker::~UIModelWorker() {} |
77 | 77 |
78 } // namespace browser_sync | 78 } // namespace browser_sync |
OLD | NEW |