[content shell] implement testRunner.overridePreference
[chromium-blink-merge.git] / content / browser / browser_thread_impl.h
blob9eaeb6814c99c6e3e40d9a94ee21b38e995def7e
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
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_BROWSER_THREAD_IMPL_H_
6 #define CONTENT_BROWSER_BROWSER_THREAD_IMPL_H_
8 #include "base/threading/thread.h"
9 #include "content/common/content_export.h"
10 #include "content/public/browser/browser_thread.h"
12 namespace content {
14 class CONTENT_EXPORT BrowserThreadImpl
15 : public BrowserThread, public base::Thread {
16 public:
17 // Construct a BrowserThreadImpl with the supplied identifier. It is an error
18 // to construct a BrowserThreadImpl that already exists.
19 explicit BrowserThreadImpl(BrowserThread::ID identifier);
21 // Special constructor for the main (UI) thread and unittests. We use a dummy
22 // thread here since the main thread already exists.
23 BrowserThreadImpl(BrowserThread::ID identifier, MessageLoop* message_loop);
24 virtual ~BrowserThreadImpl();
26 static void ShutdownThreadPool();
28 protected:
29 virtual void Init() OVERRIDE;
30 virtual void Run(MessageLoop* message_loop) OVERRIDE;
31 virtual void CleanUp() OVERRIDE;
33 private:
34 // We implement all the functionality of the public BrowserThread
35 // functions, but state is stored in the BrowserThreadImpl to keep
36 // the API cleaner. Therefore make BrowserThread a friend class.
37 friend class BrowserThread;
39 // The following are unique function names that makes it possible to tell
40 // the thread id from the callstack alone in crash dumps.
41 void UIThreadRun(MessageLoop* message_loop);
42 void DBThreadRun(MessageLoop* message_loop);
43 void WebKitThreadRun(MessageLoop* message_loop);
44 void FileThreadRun(MessageLoop* message_loop);
45 void FileUserBlockingThreadRun(MessageLoop* message_loop);
46 void ProcessLauncherThreadRun(MessageLoop* message_loop);
47 void CacheThreadRun(MessageLoop* message_loop);
48 void IOThreadRun(MessageLoop* message_loop);
50 static bool PostTaskHelper(
51 BrowserThread::ID identifier,
52 const tracked_objects::Location& from_here,
53 const base::Closure& task,
54 base::TimeDelta delay,
55 bool nestable);
57 // Common initialization code for the constructors.
58 void Initialize();
60 // The identifier of this thread. Only one thread can exist with a given
61 // identifier at a given time.
62 ID identifier_;
65 } // namespace content
67 #endif // CONTENT_BROWSER_BROWSER_THREAD_IMPL_H_