diff options
author | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-02 06:23:48 +0000 |
---|---|---|
committer | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-02 06:23:48 +0000 |
commit | 5d15ae918f5b07bb5203ee001cdefd9058ddac86 (patch) | |
tree | d0776910d4c86344884114ccaa6cf51d2ac72f96 /base/object_watcher.cc | |
parent | 74a422edbf6b455f83931548c5aeee0f454c9520 (diff) | |
download | chromium_src-5d15ae918f5b07bb5203ee001cdefd9058ddac86.zip chromium_src-5d15ae918f5b07bb5203ee001cdefd9058ddac86.tar.gz chromium_src-5d15ae918f5b07bb5203ee001cdefd9058ddac86.tar.bz2 |
Call ResetBirthTime before dispatching the user's Task. Also, remove PostSignaledTask since it won't be used.
TBR=jar
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/object_watcher.cc')
-rw-r--r-- | base/object_watcher.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/base/object_watcher.cc b/base/object_watcher.cc index 95c0b64..c16f917 100644 --- a/base/object_watcher.cc +++ b/base/object_watcher.cc @@ -57,6 +57,7 @@ struct ObjectWatcher::Watch : public Task { watcher->CancelWatch(object); + task_to_run->ResetBirthTime(); task_to_run->Run(); delete task_to_run; } |