| Index: third_party/WebKit/Source/platform/scheduler/utility/webthread_impl_for_utility_thread.cc
|
| diff --git a/content/utility/webthread_impl_for_utility_thread.cc b/third_party/WebKit/Source/platform/scheduler/utility/webthread_impl_for_utility_thread.cc
|
| similarity index 79%
|
| rename from content/utility/webthread_impl_for_utility_thread.cc
|
| rename to third_party/WebKit/Source/platform/scheduler/utility/webthread_impl_for_utility_thread.cc
|
| index c949a74ca1763ffbe46ba2b23ce5a740671de553..3309dc02f3d4bbe7c4adc2bea8398f181c84ef78 100644
|
| --- a/content/utility/webthread_impl_for_utility_thread.cc
|
| +++ b/third_party/WebKit/Source/platform/scheduler/utility/webthread_impl_for_utility_thread.cc
|
| @@ -2,19 +2,18 @@
|
| // 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 "public/platform/scheduler/utility/webthread_impl_for_utility_thread.h"
|
|
|
| #include "base/threading/thread_task_runner_handle.h"
|
|
|
| -namespace content {
|
| +namespace blink {
|
| +namespace scheduler {
|
|
|
| WebThreadImplForUtilityThread::WebThreadImplForUtilityThread()
|
| : task_runner_(base::ThreadTaskRunnerHandle::Get()),
|
| - thread_id_(base::PlatformThread::CurrentId()) {
|
| -}
|
| + thread_id_(base::PlatformThread::CurrentId()) {}
|
|
|
| -WebThreadImplForUtilityThread::~WebThreadImplForUtilityThread() {
|
| -}
|
| +WebThreadImplForUtilityThread::~WebThreadImplForUtilityThread() {}
|
|
|
| blink::WebScheduler* WebThreadImplForUtilityThread::scheduler() const {
|
| NOTIMPLEMENTED();
|
| @@ -36,4 +35,5 @@ WebThreadImplForUtilityThread::GetIdleTaskRunner() const {
|
| return nullptr;
|
| }
|
|
|
| -} // namespace content
|
| +} // namespace scheduler
|
| +} // namespace blink
|
|
|