diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2018-05-15 10:20:33 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2018-05-15 10:28:57 +0000 |
commit | d17ea114e5ef69ad5d5d7413280a13e6428098aa (patch) | |
tree | 2c01a75df69f30d27b1432467cfe7c1467a498da /chromium/base/timer/timer.cc | |
parent | 8c5c43c7b138c9b4b0bf56d946e61d3bbc111bec (diff) | |
download | qtwebengine-chromium-d17ea114e5ef69ad5d5d7413280a13e6428098aa.tar.gz |
BASELINE: Update Chromium to 67.0.3396.47
Change-Id: Idcb1341782e417561a2473eeecc82642dafda5b7
Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'chromium/base/timer/timer.cc')
-rw-r--r-- | chromium/base/timer/timer.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chromium/base/timer/timer.cc b/chromium/base/timer/timer.cc index 5540994dcb7..99cd83933aa 100644 --- a/chromium/base/timer/timer.cc +++ b/chromium/base/timer/timer.cc @@ -62,7 +62,9 @@ class BaseTimerTaskInternal { Timer::Timer(bool retain_user_task, bool is_repeating) : Timer(retain_user_task, is_repeating, nullptr) {} -Timer::Timer(bool retain_user_task, bool is_repeating, TickClock* tick_clock) +Timer::Timer(bool retain_user_task, + bool is_repeating, + const TickClock* tick_clock) : scheduled_task_(nullptr), is_repeating_(is_repeating), retain_user_task_(retain_user_task), @@ -85,7 +87,7 @@ Timer::Timer(const Location& posted_from, TimeDelta delay, const base::Closure& user_task, bool is_repeating, - TickClock* tick_clock) + const TickClock* tick_clock) : scheduled_task_(nullptr), posted_from_(posted_from), delay_(delay), |