summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorpaul@chromium.org <paul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-18 01:27:01 +0000
committerpaul@chromium.org <paul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-18 01:27:01 +0000
commit640579651b4a52f58d96db3a693274e3db47efda (patch)
tree169fb159248ba6d10d8393183ec0e912c269558a /base
parentefd73788611d6060d46c0802d7de497539e9814c (diff)
downloadchromium_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.h4
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();