| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/keyed_service/core/refcounted_keyed_service.h" | 5 #include "components/keyed_service/core/refcounted_keyed_service.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include "base/location.h" |
| 8 #include "base/threading/thread_task_runner_handle.h" |
| 8 | 9 |
| 9 namespace impl { | 10 namespace impl { |
| 10 | 11 |
| 11 // static | 12 // static |
| 12 void RefcountedKeyedServiceTraits::Destruct(const RefcountedKeyedService* obj) { | 13 void RefcountedKeyedServiceTraits::Destruct(const RefcountedKeyedService* obj) { |
| 13 if (obj->task_runner_ && !obj->task_runner_->RunsTasksOnCurrentThread()) { | 14 if (obj->task_runner_.get() != nullptr && |
| 15 obj->task_runner_.get() != base::ThreadTaskRunnerHandle::Get()) { |
| 14 obj->task_runner_->DeleteSoon(FROM_HERE, obj); | 16 obj->task_runner_->DeleteSoon(FROM_HERE, obj); |
| 15 } else { | 17 } else { |
| 16 delete obj; | 18 delete obj; |
| 17 } | 19 } |
| 18 } | 20 } |
| 19 | 21 |
| 20 } // namespace impl | 22 } // namespace impl |
| 21 | 23 |
| 22 RefcountedKeyedService::RefcountedKeyedService() : task_runner_(nullptr) { | 24 RefcountedKeyedService::RefcountedKeyedService() : task_runner_(nullptr) { |
| 23 } | 25 } |
| 24 | 26 |
| 25 RefcountedKeyedService::RefcountedKeyedService( | 27 RefcountedKeyedService::RefcountedKeyedService( |
| 26 scoped_refptr<base::SequencedTaskRunner> task_runner) | 28 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner) |
| 27 : task_runner_(std::move(task_runner)) {} | 29 : task_runner_(task_runner) { |
| 30 } |
| 28 | 31 |
| 29 RefcountedKeyedService::~RefcountedKeyedService() = default; | 32 RefcountedKeyedService::~RefcountedKeyedService() { |
| 33 } |
| OLD | NEW |