0

Fixed the markdown syntax error and code path for plugin_list.cc

Change-Id: I83cc2628916875d3ea6ecd95eb19aaba2757c358
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1549980
Commit-Queue: François Doray <fdoray@chromium.org>
Reviewed-by: François Doray <fdoray@chromium.org>
Cr-Commit-Position: refs/heads/master@{#647234}
This commit is contained in:
Haiyang Pan
2019-04-03 12:07:26 +00:00
committed by Commit Bot
parent 3be21d911e
commit a23280217e

@ -273,8 +273,7 @@ accessed on multiple threads. If one thread updates it based on expensive
computation or through disk access, then that slow work should be done without
holding on to the lock. Only when the result is available should the lock be
used to swap in the new data. An example of this is in PluginList::LoadPlugins
([`content/common/plugin_list.cc`](https://cs.chromium.org/chromium/src/content/
common/plugin_list.cc). If you must use locks,
([`content/browser/plugin_list.cc`](https://cs.chromium.org/chromium/src/content/browser/plugin_list.cc)). If you must use locks,
[here](https://www.chromium.org/developers/lock-and-condition-variable) are some
best practices and pitfalls to avoid.