chore: bump chromium to 63be48daea281d4f8c834c2e707a7 (master) (#19923)
This commit is contained in:
parent
104088b86b
commit
eb2d2264d0
124 changed files with 1736 additions and 1410 deletions
|
@ -311,8 +311,8 @@ void ShowItemInFolderOnWorkerThread(const base::FilePath& full_path) {
|
|||
namespace platform_util {
|
||||
|
||||
void ShowItemInFolder(const base::FilePath& full_path) {
|
||||
base::CreateCOMSTATaskRunnerWithTraits(
|
||||
{base::MayBlock(), base::TaskPriority::USER_BLOCKING})
|
||||
base::CreateCOMSTATaskRunner(
|
||||
{base::ThreadPool(), base::MayBlock(), base::TaskPriority::USER_BLOCKING})
|
||||
->PostTask(FROM_HERE,
|
||||
base::BindOnce(&ShowItemInFolderOnWorkerThread, full_path));
|
||||
}
|
||||
|
@ -328,8 +328,8 @@ void OpenExternal(const GURL& url,
|
|||
const OpenExternalOptions& options,
|
||||
OpenExternalCallback callback) {
|
||||
base::PostTaskAndReplyWithResult(
|
||||
base::CreateCOMSTATaskRunnerWithTraits(
|
||||
{base::MayBlock(), base::TaskPriority::USER_BLOCKING})
|
||||
base::CreateCOMSTATaskRunner({base::ThreadPool(), base::MayBlock(),
|
||||
base::TaskPriority::USER_BLOCKING})
|
||||
.get(),
|
||||
FROM_HERE, base::BindOnce(&OpenExternalOnWorkerThread, url, options),
|
||||
std::move(callback));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue