summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--PRESUBMIT.py10
-rw-r--r--base/message_loop.h3
2 files changed, 0 insertions, 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(); }