summaryrefslogtreecommitdiffstats
path: root/mojo
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-16 21:05:53 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-16 21:05:53 +0000
commitc784a70fbfe0f729af6380293442418650f8229e (patch)
tree5c0241ea600a8f343c006c240e03321cb66592c1 /mojo
parentafbf7dd3471ebb3d5415374d917a55341f00504e (diff)
downloadchromium_src-c784a70fbfe0f729af6380293442418650f8229e.zip
chromium_src-c784a70fbfe0f729af6380293442418650f8229e.tar.gz
chromium_src-c784a70fbfe0f729af6380293442418650f8229e.tar.bz2
Mojo: Remove bogus TODO(darin) comment.
BUG=384578 TBR=sky@chromium.org Review URL: https://codereview.chromium.org/334263006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277533 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo')
-rw-r--r--mojo/public/cpp/utility/lib/run_loop.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/mojo/public/cpp/utility/lib/run_loop.cc b/mojo/public/cpp/utility/lib/run_loop.cc
index d900d0b..5bf30d5 100644
--- a/mojo/public/cpp/utility/lib/run_loop.cc
+++ b/mojo/public/cpp/utility/lib/run_loop.cc
@@ -153,11 +153,6 @@ bool RunLoop::NotifyDeadlineExceeded() {
// Make a copy in case someone tries to add/remove new handlers as part of
// notifying.
- //
- // TODO(darin): This does not protect against removal of handlers! After a
- // call to OnHandleError, |cloned_handlers| could contain an invalid pointer
- // to a RunLoopHandler! See http://crbug.com/384578.
- //
const HandleToHandlerData cloned_handlers(handler_data_);
const MojoTimeTicks now(GetTimeTicksNow());
for (HandleToHandlerData::const_iterator i = cloned_handlers.begin();