| Index: content/utility/webthread_impl_for_utility_thread.cc
|
| diff --git a/content/utility/webthread_impl_for_utility_thread.cc b/content/utility/webthread_impl_for_utility_thread.cc
|
| deleted file mode 100644
|
| index c949a74ca1763ffbe46ba2b23ce5a740671de553..0000000000000000000000000000000000000000
|
| --- a/content/utility/webthread_impl_for_utility_thread.cc
|
| +++ /dev/null
|
| @@ -1,39 +0,0 @@
|
| -// Copyright 2015 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/utility/webthread_impl_for_utility_thread.h"
|
| -
|
| -#include "base/threading/thread_task_runner_handle.h"
|
| -
|
| -namespace content {
|
| -
|
| -WebThreadImplForUtilityThread::WebThreadImplForUtilityThread()
|
| - : task_runner_(base::ThreadTaskRunnerHandle::Get()),
|
| - thread_id_(base::PlatformThread::CurrentId()) {
|
| -}
|
| -
|
| -WebThreadImplForUtilityThread::~WebThreadImplForUtilityThread() {
|
| -}
|
| -
|
| -blink::WebScheduler* WebThreadImplForUtilityThread::scheduler() const {
|
| - NOTIMPLEMENTED();
|
| - return nullptr;
|
| -}
|
| -
|
| -blink::PlatformThreadId WebThreadImplForUtilityThread::threadId() const {
|
| - return thread_id_;
|
| -}
|
| -
|
| -base::SingleThreadTaskRunner* WebThreadImplForUtilityThread::GetTaskRunner()
|
| - const {
|
| - return task_runner_.get();
|
| -}
|
| -
|
| -scheduler::SingleThreadIdleTaskRunner*
|
| -WebThreadImplForUtilityThread::GetIdleTaskRunner() const {
|
| - NOTIMPLEMENTED();
|
| - return nullptr;
|
| -}
|
| -
|
| -} // namespace content
|
|
|