commit | eaeccc520b2baf04225f08384af88e5fd2f90536 | [log] [tgz] |
---|---|---|
author | sdefresne <[email protected]> | Wed Apr 22 08:18:32 2015 |
committer | Commit bot <[email protected]> | Wed Apr 22 08:19:28 2015 |
tree | 00af81dd483eb503c1d1ace8c2a6cc99df968b96 | |
parent | 835c1d6d6b8374ed2e71e04825b7b3c58fd0aa32 [diff] [blame] |
Fix deprecation of MessageLoopProxy check Update MessageLoopProxy deprecation regexp to match whole word only so that calling BrowserThread::GetMessageLoopProxyForThread() or similarly named functions do not raise the deprecation. Followup to https://codereview.chromium.org/1097763002 to address comments post-commit. BUG=465354 Review URL: https://codereview.chromium.org/1099153002 Cr-Commit-Position: refs/heads/master@{#326245}
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index ba715e1..71360cb 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py
@@ -251,7 +251,7 @@ ), ), ( - 'MessageLoopProxy', + '\<MessageLoopProxy\>', ( 'MessageLoopProxy is deprecated. ', 'Please use SingleThreadTaskRunner or ThreadTaskRunnerHandle instead.'