blob: 1c39501faecc7dddd69e267b6586d6372d44820a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/sync/glue/history_model_worker.h"
#include "base/message_loop.h"
#include "base/ref_counted.h"
#include "base/task.h"
#include "base/waitable_event.h"
#include "chrome/browser/browser_thread.h"
#include "chrome/browser/history/history.h"
using base::WaitableEvent;
namespace browser_sync {
class WorkerTask : public HistoryDBTask {
public:
WorkerTask(Callback0::Type* work, WaitableEvent* done)
: work_(work), done_(done) {}
virtual bool RunOnDBThread(history::HistoryBackend* backend,
history::HistoryDatabase* db) {
work_->Run();
done_->Signal();
return true;
}
// Since the DoWorkAndWaitUntilDone() is syncronous, we don't need to run any
// code asynchronously on the main thread after completion.
virtual void DoneRunOnMainThread() {}
protected:
Callback0::Type* work_;
WaitableEvent* done_;
};
HistoryModelWorker::HistoryModelWorker(HistoryService* history_service)
: history_service_(history_service) {
}
HistoryModelWorker::~HistoryModelWorker() {
}
void HistoryModelWorker::DoWorkAndWaitUntilDone(Callback0::Type* work) {
WaitableEvent done(false, false);
scoped_refptr<WorkerTask> task(new WorkerTask(work, &done));
history_service_->ScheduleDBTask(task.get(), this);
done.Wait();
}
bool HistoryModelWorker::CurrentThreadIsWorkThread() {
// TODO(ncarter): How to determine this?
return true;
}
} // namespace browser_sync
|