diff options
author | paul@chromium.org <paul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-18 01:27:01 +0000 |
---|---|---|
committer | paul@chromium.org <paul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-18 01:27:01 +0000 |
commit | 640579651b4a52f58d96db3a693274e3db47efda (patch) | |
tree | 169fb159248ba6d10d8393183ec0e912c269558a /base | |
parent | efd73788611d6060d46c0802d7de497539e9814c (diff) | |
download | chromium_src-640579651b4a52f58d96db3a693274e3db47efda.zip chromium_src-640579651b4a52f58d96db3a693274e3db47efda.tar.gz chromium_src-640579651b4a52f58d96db3a693274e3db47efda.tar.bz2 |
Add the UI thread to the list of ChromeThreads.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/171088
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23605 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/thread.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/base/thread.h b/base/thread.h index ae1b513..d1aae0e 100644 --- a/base/thread.h +++ b/base/thread.h @@ -120,6 +120,10 @@ class Thread : PlatformThread::Delegate { static void SetThreadWasQuitProperly(bool flag); static bool GetThreadWasQuitProperly(); + void set_message_loop(MessageLoop* message_loop) { + message_loop_ = message_loop; + } + private: // PlatformThread::Delegate methods: virtual void ThreadMain(); |