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

Side by Side Diff: content/browser/browser_thread_impl.h

Issue 9065009: Hook up the SequencedWorkerPool to the browser thread. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 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
« no previous file with comments | « content/browser/browser_main_loop.cc ('k') | content/browser/browser_thread_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 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 #ifndef CONTENT_BROWSER_BROWSER_THREAD_IMPL_H_ 5 #ifndef CONTENT_BROWSER_BROWSER_THREAD_IMPL_H_
6 #define CONTENT_BROWSER_BROWSER_THREAD_IMPL_H_ 6 #define CONTENT_BROWSER_BROWSER_THREAD_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/synchronization/lock.h" 9 #include "base/synchronization/lock.h"
10 #include "base/threading/thread.h" 10 #include "base/threading/thread.h"
11 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
12 #include "content/public/browser/browser_thread.h" 12 #include "content/public/browser/browser_thread.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 class CONTENT_EXPORT BrowserThreadImpl 16 class CONTENT_EXPORT BrowserThreadImpl
17 : public BrowserThread, public base::Thread { 17 : public BrowserThread, public base::Thread {
18 public: 18 public:
19 // Construct a BrowserThreadImpl with the supplied identifier. It is an error 19 // Construct a BrowserThreadImpl with the supplied identifier. It is an error
20 // to construct a BrowserThreadImpl that already exists. 20 // to construct a BrowserThreadImpl that already exists.
21 explicit BrowserThreadImpl(BrowserThread::ID identifier); 21 explicit BrowserThreadImpl(BrowserThread::ID identifier);
22 22
23 // Special constructor for the main (UI) thread and unittests. We use a dummy 23 // Special constructor for the main (UI) thread and unittests. We use a dummy
24 // thread here since the main thread already exists. 24 // thread here since the main thread already exists.
25 BrowserThreadImpl(BrowserThread::ID identifier, MessageLoop* message_loop); 25 BrowserThreadImpl(BrowserThread::ID identifier, MessageLoop* message_loop);
26 virtual ~BrowserThreadImpl(); 26 virtual ~BrowserThreadImpl();
27 27
28 static void ShutdownThreadPool();
29
28 protected: 30 protected:
29 virtual void Init() OVERRIDE; 31 virtual void Init() OVERRIDE;
30 virtual void CleanUp() OVERRIDE; 32 virtual void CleanUp() OVERRIDE;
31 33
32 private: 34 private:
33 // We implement all the functionality of the public BrowserThread 35 // We implement all the functionality of the public BrowserThread
34 // functions, but state is stored in the BrowserThreadImpl to keep 36 // functions, but state is stored in the BrowserThreadImpl to keep
35 // the API cleaner. Therefore make BrowserThread a friend class. 37 // the API cleaner. Therefore make BrowserThread a friend class.
36 friend class BrowserThread; 38 friend class BrowserThread;
37 39
(...skipping 15 matching lines...) Expand all
53 void Initialize(); 55 void Initialize();
54 56
55 // The identifier of this thread. Only one thread can exist with a given 57 // The identifier of this thread. Only one thread can exist with a given
56 // identifier at a given time. 58 // identifier at a given time.
57 ID identifier_; 59 ID identifier_;
58 }; 60 };
59 61
60 } // namespace content 62 } // namespace content
61 63
62 #endif // CONTENT_BROWSER_BROWSER_THREAD_IMPL_H_ 64 #endif // CONTENT_BROWSER_BROWSER_THREAD_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/browser_main_loop.cc ('k') | content/browser/browser_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698