diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-16 02:43:00 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-16 02:43:00 +0000 |
commit | 8be159e46b81c5a85998fc81a96dc2cb56105d4d (patch) | |
tree | ac3e7ee6f6893e3c965cbf1d99b843a59819c9f9 /base/message_loop.h | |
parent | e1902fc9a52c499433ca440b1d03d70f7461d65e (diff) | |
download | chromium_src-8be159e46b81c5a85998fc81a96dc2cb56105d4d.zip chromium_src-8be159e46b81c5a85998fc81a96dc2cb56105d4d.tar.gz chromium_src-8be159e46b81c5a85998fc81a96dc2cb56105d4d.tar.bz2 |
Fix comments that reference the long since deleted TimerManager class.
Review URL: https://chromiumcodereview.appspot.com/11913006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177062 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/message_loop.h')
-rw-r--r-- | base/message_loop.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/base/message_loop.h b/base/message_loop.h index 1f5c601..7ffb888 100644 --- a/base/message_loop.h +++ b/base/message_loop.h @@ -53,11 +53,11 @@ class MessagePumpForUI; // A MessageLoop is used to process events for a particular thread. There is // at most one MessageLoop instance per thread. // -// Events include at a minimum Task instances submitted to PostTask or those -// managed by TimerManager. Depending on the type of message pump used by the -// MessageLoop other events such as UI messages may be processed. On Windows -// APC calls (as time permits) and signals sent to a registered set of HANDLEs -// may also be processed. +// Events include at a minimum Task instances submitted to PostTask and its +// variants. Depending on the type of message pump used by the MessageLoop +// other events such as UI messages may be processed. On Windows APC calls (as +// time permits) and signals sent to a registered set of HANDLEs may also be +// processed. // // NOTE: Unless otherwise specified, a MessageLoop's methods may only be called // on the thread where the MessageLoop's Run method executes. @@ -490,10 +490,9 @@ class BASE_EXPORT MessageLoop : public base::MessagePump::Delegate { // A profiling histogram showing the counts of various messages and events. base::Histogram* message_histogram_; - // A null terminated list which creates an incoming_queue of tasks that are - // acquired under a mutex for processing on this instance's thread. These - // tasks have not yet been sorted out into items for our work_queue_ vs items - // that will be handled by the TimerManager. + // An incoming queue of tasks that are acquired under a mutex for processing + // on this instance's thread. These tasks have not yet been sorted out into + // items for our work_queue_ vs delayed_work_queue_. base::TaskQueue incoming_queue_; // Protect access to incoming_queue_. mutable base::Lock incoming_queue_lock_; |