From 2fe5bd001086e00faadef86fbb18f6b42d777624 Mon Sep 17 00:00:00 2001
From: "tfarina@chromium.org"
 <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>
Date: Wed, 19 Dec 2012 17:28:44 +0000
Subject: 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
---
 PRESUBMIT.py        | 10 ----------
 base/message_loop.h |  3 ---
 2 files changed, 13 deletions(-)

diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index ee75ad3..05e3070 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -181,19 +181,9 @@ _BANNED_CPP_FUNCTIONS = (
       True,
       (),
     ),
-    (
-      'RunAllPending()',
-      (
-       'This function is deprecated and we\'re working on removing it. Rename',
-       'to RunUntilIdle',
-      ),
-      True,
-      (),
-    ),
 )
 
 
-
 def _CheckNoProductionCodeUsingTestOnlyFunctions(input_api, output_api):
   """Attempts to prevent use of functions intended only for testing in
   non-testing code. For now this is just a best-effort implementation
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(); }
 
-- 
cgit v1.1