diff options
author | petrcermak <petrcermak@chromium.org> | 2014-11-05 18:17:57 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-06 02:18:21 +0000 |
commit | 7652da6d5cbd7e5b82b340e638ebe80aafeacf6e (patch) | |
tree | 25110fc030ba4aa5d0b1c3e1ca14c62e2b6b4acd /build/get_landmines.py | |
parent | cac4fcac08708216009373121e573686adaac869 (diff) | |
download | chromium_src-7652da6d5cbd7e5b82b340e638ebe80aafeacf6e.zip chromium_src-7652da6d5cbd7e5b82b340e638ebe80aafeacf6e.tar.gz chromium_src-7652da6d5cbd7e5b82b340e638ebe80aafeacf6e.tar.bz2 |
Add support to base::Timer for custom task runners.
This patch adds a public method
SetTaskRunner(scoped_refptr<SingleThreadTaskRunner>) 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}
Diffstat (limited to 'build/get_landmines.py')
-rwxr-xr-x | build/get_landmines.py | 1 |
1 files changed, 1 insertions, 0 deletions
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(): |