From 7652da6d5cbd7e5b82b340e638ebe80aafeacf6e Mon Sep 17 00:00:00 2001 From: petrcermak Date: Wed, 5 Nov 2014 18:17:57 -0800 Subject: Add support to base::Timer for custom task runners. This patch adds a public method SetTaskRunner(scoped_refptr) to base::Timer which changes the task runner used by the timer (ThreadTaskRunnerHandler::Get() by default). This change will enable scheduling timers on the queues of the Blink scheduler (see https://codereview.chromium.org/637303003/). Most importantly, we plan to apply this to the shared timer in blink::Platform. BUG= Review URL: https://codereview.chromium.org/637983003 Cr-Commit-Position: refs/heads/master@{#302947} --- build/get_landmines.py | 1 + 1 file changed, 1 insertion(+) (limited to 'build/get_landmines.py') diff --git a/build/get_landmines.py b/build/get_landmines.py index 5740cb8..1eec5eec 100755 --- a/build/get_landmines.py +++ b/build/get_landmines.py @@ -60,6 +60,7 @@ def print_landmines(): if platform() == 'android': print 'Delete stale generated .java files yet again. crbug.com/349592' print 'Clobber to delete incompatible object binary format with NDK r10c' + print 'Clobber to fix missing NaCl gyp dependencies (crbug.com/427427).' def main(): -- cgit v1.1