summaryrefslogtreecommitdiffstats
path: root/base/message_loop.h
diff options
context:
space:
mode:
authorjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-21 06:32:33 +0000
committerjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-21 06:32:33 +0000
commit11f76c7e6b989b9683a88f5fe080f66b7d08f4ea (patch)
treea1816051e8f08748ea330cb0fde05ab8a0e6b3ef /base/message_loop.h
parent0bb07852c6769a990a585a740613014520503dfe (diff)
downloadchromium_src-11f76c7e6b989b9683a88f5fe080f66b7d08f4ea.zip
chromium_src-11f76c7e6b989b9683a88f5fe080f66b7d08f4ea.tar.gz
chromium_src-11f76c7e6b989b9683a88f5fe080f66b7d08f4ea.tar.bz2
Revert 63332 - Test of performance value of reducing calls to Now().
I'll revert asap, once the perf bots have kicked off. TBR=mbelshe Review URL: http://codereview.chromium.org/3936003 TBR=jar@chromium.org Review URL: http://codereview.chromium.org/4051001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63334 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/message_loop.h')
-rw-r--r--base/message_loop.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/base/message_loop.h b/base/message_loop.h
index 578f5c5..94e0096 100644
--- a/base/message_loop.h
+++ b/base/message_loop.h
@@ -442,11 +442,6 @@ class MessageLoop : public base::MessagePump::Delegate {
// Contains delayed tasks, sorted by their 'delayed_run_time' property.
DelayedTaskQueue delayed_work_queue_;
- // Contains delayed tasks (popped from delayed_work_queue_) that have already
- // passed their expiration time, and can be run. They are ordered exactly as
- // they were on the delayed_work_queue_ when popped.
- TaskQueue ripe_work_queue_;
-
// A queue of non-nestable tasks that we had to defer because when it came
// time to execute them we were in a nested message loop. They will execute
// once we're out of nested message loops.