Commit 1b43b401 authored by Ming-Chuan Lin's avatar Ming-Chuan Lin Committed by Commit Bot

Fix typo. reviewer -> receiver

Bug: None
Change-Id: Id3f73138ca5a5a8c05fd4556cea380ae1c7401e2
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2078091Reviewed-by: default avatardanakj <danakj@chromium.org>
Commit-Queue: danakj <danakj@chromium.org>
Cr-Commit-Position: refs/heads/master@{#745104}
parent 52fa36d7
...@@ -230,7 +230,7 @@ class BASE_EXPORT OneShotTimer : public internal::TimerBase { ...@@ -230,7 +230,7 @@ class BASE_EXPORT OneShotTimer : public internal::TimerBase {
// Start the timer to run at the given |delay| from now. If the timer is // Start the timer to run at the given |delay| from now. If the timer is
// already running, it will be replaced to call a task formed from // already running, it will be replaced to call a task formed from
// |reviewer->*method|. // |receiver->*method|.
template <class Receiver> template <class Receiver>
void Start(const Location& posted_from, void Start(const Location& posted_from,
TimeDelta delay, TimeDelta delay,
...@@ -276,7 +276,7 @@ class BASE_EXPORT RepeatingTimer : public internal::TimerBase { ...@@ -276,7 +276,7 @@ class BASE_EXPORT RepeatingTimer : public internal::TimerBase {
// Start the timer to run at the given |delay| from now. If the timer is // Start the timer to run at the given |delay| from now. If the timer is
// already running, it will be replaced to call a task formed from // already running, it will be replaced to call a task formed from
// |reviewer->*method|. // |receiver->*method|.
template <class Receiver> template <class Receiver>
void Start(const Location& posted_from, void Start(const Location& posted_from,
TimeDelta delay, TimeDelta delay,
...@@ -323,7 +323,7 @@ class BASE_EXPORT RetainingOneShotTimer : public internal::TimerBase { ...@@ -323,7 +323,7 @@ class BASE_EXPORT RetainingOneShotTimer : public internal::TimerBase {
// Start the timer to run at the given |delay| from now. If the timer is // Start the timer to run at the given |delay| from now. If the timer is
// already running, it will be replaced to call a task formed from // already running, it will be replaced to call a task formed from
// |reviewer->*method|. // |receiver->*method|.
template <class Receiver> template <class Receiver>
void Start(const Location& posted_from, void Start(const Location& posted_from,
TimeDelta delay, TimeDelta delay,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment