summaryrefslogtreecommitdiffstats
path: root/PRESUBMIT.py
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-19 17:28:44 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-19 17:28:44 +0000
commit2fe5bd001086e00faadef86fbb18f6b42d777624 (patch)
treef314414e90b063b9b7ac1c75469448818aaf4758 /PRESUBMIT.py
parent8115be22d0710286f93fc8b5d49303ea7a46d1af (diff)
downloadchromium_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 'PRESUBMIT.py')
-rw-r--r--PRESUBMIT.py10
1 files changed, 0 insertions, 10 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