Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: device/bluetooth/dbus/fake_bluetooth_adapter_client.cc

Issue 1867253002: Convert //dbus from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: IWYU fixes in //device Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 "device/bluetooth/dbus/fake_bluetooth_adapter_client.h" 5 #include "device/bluetooth/dbus/fake_bluetooth_adapter_client.h"
6 6
7 #include "base/location.h" 7 #include "base/location.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/memory/scoped_ptr.h"
9 #include "base/single_thread_task_runner.h" 10 #include "base/single_thread_task_runner.h"
10 #include "base/thread_task_runner_handle.h" 11 #include "base/thread_task_runner_handle.h"
11 #include "base/time/time.h" 12 #include "base/time/time.h"
12 #include "device/bluetooth/dbus/bluez_dbus_manager.h" 13 #include "device/bluetooth/dbus/bluez_dbus_manager.h"
13 #include "device/bluetooth/dbus/fake_bluetooth_device_client.h" 14 #include "device/bluetooth/dbus/fake_bluetooth_device_client.h"
14 #include "third_party/cros_system_api/dbus/service_constants.h" 15 #include "third_party/cros_system_api/dbus/service_constants.h"
15 16
16 namespace bluez { 17 namespace bluez {
17 18
18 namespace { 19 namespace {
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 } 298 }
298 299
299 void FakeBluetoothAdapterClient::PostDelayedTask( 300 void FakeBluetoothAdapterClient::PostDelayedTask(
300 const base::Closure& callback) { 301 const base::Closure& callback) {
301 base::ThreadTaskRunnerHandle::Get()->PostDelayedTask( 302 base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
302 FROM_HERE, callback, 303 FROM_HERE, callback,
303 base::TimeDelta::FromMilliseconds(simulation_interval_ms_)); 304 base::TimeDelta::FromMilliseconds(simulation_interval_ms_));
304 } 305 }
305 306
306 } // namespace bluez 307 } // namespace bluez
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698