summaryrefslogtreecommitdiff
path: root/chromium/codelabs
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2021-05-20 09:47:09 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-06-07 11:15:42 +0000
commit189d4fd8fad9e3c776873be51938cd31a42b6177 (patch)
tree6497caeff5e383937996768766ab3bb2081a40b2 /chromium/codelabs
parent8bc75099d364490b22f43a7ce366b366c08f4164 (diff)
downloadqtwebengine-chromium-189d4fd8fad9e3c776873be51938cd31a42b6177.tar.gz
BASELINE: Update Chromium to 90.0.4430.221
Change-Id: Iff4d9d18d2fcf1a576f3b1f453010f744a232920 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/codelabs')
-rw-r--r--chromium/codelabs/OWNERS1
-rw-r--r--chromium/codelabs/cpp101/codelab.md6
2 files changed, 4 insertions, 3 deletions
diff --git a/chromium/codelabs/OWNERS b/chromium/codelabs/OWNERS
index e2fe7c61664..647e8782dc6 100644
--- a/chromium/codelabs/OWNERS
+++ b/chromium/codelabs/OWNERS
@@ -1,4 +1,5 @@
*
# Primary
+asully@chromium.org
pwnall@chromium.org \ No newline at end of file
diff --git a/chromium/codelabs/cpp101/codelab.md b/chromium/codelabs/cpp101/codelab.md
index ddac55c0953..13cd52b73a3 100644
--- a/chromium/codelabs/cpp101/codelab.md
+++ b/chromium/codelabs/cpp101/codelab.md
@@ -205,9 +205,9 @@ those tasks.
`base::SequencedTaskRunner` (which extends `base::TaskRunner`) is a commonly
used abstraction which handles running tasks (which are instances
-of `base::Closure`) in sequential order. These tasks are not guaranteed to run
-on the same thread. The preferred way of posting to the current (virtual) thread
-is `base::SequencedTaskRunnerHandle::Get()`.
+of `base::OnceClosure`) in sequential order. These tasks are not guaranteed to
+run on the same thread. The preferred way of posting to the current (virtual)
+thread is `base::SequencedTaskRunnerHandle::Get()`.
A task that can run on any thread and doesn’t have ordering or mutual exclusion
requirements with other tasks should be posted using one of the