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

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

Issue 2598963005: Include-what-you-use for WrapUnique/MakeUnique. (Closed)
Patch Set: restore order of includes in x11_topmost_window_finder_interactive_uitest.cc Created 3 years, 12 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 <utility> 5 #include <utility>
6 #include <vector> 6 #include <vector>
7 7
8 #include "base/memory/ptr_util.h"
8 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
9 #include "device/bluetooth/device.h" 10 #include "device/bluetooth/device.h"
10 #include "mojo/public/cpp/bindings/strong_binding.h" 11 #include "mojo/public/cpp/bindings/strong_binding.h"
11 12
12 namespace bluetooth { 13 namespace bluetooth {
13 Device::~Device() { 14 Device::~Device() {
14 adapter_->RemoveObserver(this); 15 adapter_->RemoveObserver(this);
15 } 16 }
16 17
17 // static 18 // static
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 service_info->is_primary = service.IsPrimary(); 123 service_info->is_primary = service.IsPrimary();
123 124
124 return service_info; 125 return service_info;
125 } 126 }
126 127
127 const std::string& Device::GetAddress() { 128 const std::string& Device::GetAddress() {
128 return connection_->GetDeviceAddress(); 129 return connection_->GetDeviceAddress();
129 } 130 }
130 131
131 } // namespace bluetooth 132 } // namespace bluetooth
OLDNEW
« no previous file with comments | « content/shell/utility/shell_content_utility_client.cc ('k') | device/gamepad/gamepad_monitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698