diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-19 17:28:44 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-19 17:28:44 +0000 |
commit | 2fe5bd001086e00faadef86fbb18f6b42d777624 (patch) | |
tree | f314414e90b063b9b7ac1c75469448818aaf4758 /base/message_loop.h | |
parent | 8115be22d0710286f93fc8b5d49303ea7a46d1af (diff) | |
download | chromium_src-2fe5bd001086e00faadef86fbb18f6b42d777624.zip chromium_src-2fe5bd001086e00faadef86fbb18f6b42d777624.tar.gz chromium_src-2fe5bd001086e00faadef86fbb18f6b42d777624.tar.bz2 |
base: Remove deprecated RunAllPending() function from MessageLoop API.
All the calls to RunAllPending() were moved to RunUntilIdle(), so now we can
remove this.
BUG=131220
R=willchan@chromium.org
TBR=maruel@chromium.org # for presubmit
Review URL: https://chromiumcodereview.appspot.com/11635008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173939 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/message_loop.h')
-rw-r--r-- | base/message_loop.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/base/message_loop.h b/base/message_loop.h index 4fd321f..1f5c601 100644 --- a/base/message_loop.h +++ b/base/message_loop.h @@ -226,9 +226,6 @@ class BASE_EXPORT MessageLoop : public base::MessagePump::Delegate { // Return as soon as all items that can be run are taken care of. void RunUntilIdle(); - // TODO(jbates) remove this. crbug.com/131220. See RunUntilIdle(). - void RunAllPending() { RunUntilIdle(); } - // TODO(jbates) remove this. crbug.com/131220. See QuitWhenIdle(). void Quit() { QuitWhenIdle(); } |