blob: 6160a2ed56929b509e0e70ce551465c577174e9f [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/common/font_list.h"
#include "base/task_scheduler/lazy_task_runner.h"
namespace content {
namespace {
base::LazySequencedTaskRunner g_font_list_task_runner =
LAZY_SEQUENCED_TASK_RUNNER_INITIALIZER(
base::TaskTraits(base::MayBlock(), base::TaskPriority::USER_VISIBLE));
} // namespace
scoped_refptr<base::SequencedTaskRunner> GetFontListTaskRunner() {
return g_font_list_task_runner.Get();
}
} // content