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

Side by Side Diff: chrome/browser/sync/glue/browser_thread_model_worker.h

Issue 7891054: Add GROUP_FILE ModelSafeGroup (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix worker count in unittest Created 9 years, 3 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
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SYNC_GLUE_BROWSER_THREAD_MODEL_WORKER_H_
6 #define CHROME_BROWSER_SYNC_GLUE_BROWSER_THREAD_MODEL_WORKER_H_
7 #pragma once
8
9 #include "base/callback.h"
10 #include "base/basictypes.h"
11 #include "chrome/browser/sync/engine/model_safe_worker.h"
12 #include "content/browser/browser_thread.h"
13
14 namespace base {
15 class WaitableEvent;
16 }
17
18 namespace browser_sync {
19
20 // A ModelSafeWorker for models that accept requests from the syncapi that need
21 // to be fulfilled on a browser thread, for example autofill on the DB thread.
22 // TODO(sync): Try to generalize other ModelWorkers (e.g. history, etc).
23 class BrowserThreadModelWorker : public browser_sync::ModelSafeWorker {
24 public:
25 BrowserThreadModelWorker(BrowserThread::ID thread, ModelSafeGroup group);
26 virtual ~BrowserThreadModelWorker();
27
28 // ModelSafeWorker implementation. Called on the sync thread.
29 virtual void DoWorkAndWaitUntilDone(Callback0::Type* work);
30 virtual ModelSafeGroup GetModelSafeGroup();
31
32 private:
33 void CallDoWorkAndSignalTask(
34 Callback0::Type* work, base::WaitableEvent* done);
35
36 BrowserThread::ID thread_;
37 ModelSafeGroup group_;
38
39 DISALLOW_COPY_AND_ASSIGN(BrowserThreadModelWorker);
40 };
41
42 } // namespace browser_sync
43
44 #endif // CHROME_BROWSER_SYNC_GLUE_BROWSER_THREAD_MODEL_WORKER_H_
OLDNEW
« no previous file with comments | « chrome/browser/sync/engine/model_safe_worker.cc ('k') | chrome/browser/sync/glue/browser_thread_model_worker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698