diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-01 20:46:29 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-01 20:46:29 +0000 |
commit | bb5eff1cc5cfd70c6504c4a30cb9ac7ca26e5bd2 (patch) | |
tree | 679a02f65d0c80edcfe68b1fa3aa9671829fad5c /PRESUBMIT.py | |
parent | 3ac569728c03d9ac25303ca5626f9adbf193669f (diff) | |
download | chromium_src-bb5eff1cc5cfd70c6504c4a30cb9ac7ca26e5bd2.zip chromium_src-bb5eff1cc5cfd70c6504c4a30cb9ac7ca26e5bd2.tar.gz chromium_src-bb5eff1cc5cfd70c6504c4a30cb9ac7ca26e5bd2.tar.bz2 |
Add presumit check to stop any more usages of MessageLoop::RunAllPending() function
While we work through the existing list.
BUG=131220
R=maruel@chromium.org
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/11293045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165489 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index bddf1b6..1740ebc 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -177,6 +177,14 @@ _BANNED_CPP_FUNCTIONS = ( ), True, ), + ( + 'RunAllPending()', + ( + 'This function is deprecated and we\'re working on removing it. Rename', + 'to RunUntilIdle', + ), + True, + ), ) |