Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: chrome/browser/sync/glue/history_model_worker.cc

Issue 5977010: Move CancellationFlag and WaitableEvent to the synchronization subdirectory.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #include "chrome/browser/sync/glue/history_model_worker.h" 5 #include "chrome/browser/sync/glue/history_model_worker.h"
6 6
7 #include "base/message_loop.h" 7 #include "base/message_loop.h"
8 #include "base/ref_counted.h" 8 #include "base/ref_counted.h"
9 #include "base/task.h" 9 #include "base/task.h"
10 #include "base/waitable_event.h" 10 #include "base/synchronization/waitable_event.h"
11 #include "chrome/browser/history/history.h" 11 #include "chrome/browser/history/history.h"
12 12
13 using base::WaitableEvent; 13 using base::WaitableEvent;
14 14
15 namespace browser_sync { 15 namespace browser_sync {
16 16
17 class WorkerTask : public HistoryDBTask { 17 class WorkerTask : public HistoryDBTask {
18 public: 18 public:
19 WorkerTask(Callback0::Type* work, WaitableEvent* done) 19 WorkerTask(Callback0::Type* work, WaitableEvent* done)
20 : work_(work), done_(done) {} 20 : work_(work), done_(done) {}
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 ModelSafeGroup HistoryModelWorker::GetModelSafeGroup() { 53 ModelSafeGroup HistoryModelWorker::GetModelSafeGroup() {
54 return GROUP_HISTORY; 54 return GROUP_HISTORY;
55 } 55 }
56 56
57 bool HistoryModelWorker::CurrentThreadIsWorkThread() { 57 bool HistoryModelWorker::CurrentThreadIsWorkThread() {
58 // TODO(ncarter): How to determine this? 58 // TODO(ncarter): How to determine this?
59 return true; 59 return true;
60 } 60 }
61 61
62 } // namespace browser_sync 62 } // namespace browser_sync
OLDNEW
« no previous file with comments | « chrome/browser/sync/glue/database_model_worker.cc ('k') | chrome/browser/sync/glue/http_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698