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

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

Issue 1542163002: Switch to standard integer types in device/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win Created 5 years 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
« no previous file with comments | « device/bluetooth/bluetooth_adapter.h ('k') | device/bluetooth/bluetooth_adapter_android.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/bluetooth_adapter.h" 5 #include "device/bluetooth/bluetooth_adapter.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/metrics/histogram_macros.h" 8 #include "base/metrics/histogram_macros.h"
9 #include "base/stl_util.h" 9 #include "base/stl_util.h"
10 #include "build/build_config.h"
10 #include "device/bluetooth/bluetooth_device.h" 11 #include "device/bluetooth/bluetooth_device.h"
11 #include "device/bluetooth/bluetooth_discovery_session.h" 12 #include "device/bluetooth/bluetooth_discovery_session.h"
12 #include "device/bluetooth/bluetooth_discovery_session_outcome.h" 13 #include "device/bluetooth/bluetooth_discovery_session_outcome.h"
13 14
14 namespace device { 15 namespace device {
15 16
16 BluetoothAdapter::ServiceOptions::ServiceOptions() { 17 BluetoothAdapter::ServiceOptions::ServiceOptions() {
17 } 18 }
18 BluetoothAdapter::ServiceOptions::~ServiceOptions() { 19 BluetoothAdapter::ServiceOptions::~ServiceOptions() {
19 } 20 }
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 252
252 // static 253 // static
253 void BluetoothAdapter::RecordBluetoothDiscoverySessionStopOutcome( 254 void BluetoothAdapter::RecordBluetoothDiscoverySessionStopOutcome(
254 UMABluetoothDiscoverySessionOutcome outcome) { 255 UMABluetoothDiscoverySessionOutcome outcome) {
255 UMA_HISTOGRAM_ENUMERATION( 256 UMA_HISTOGRAM_ENUMERATION(
256 "Bluetooth.DiscoverySession.Stop.Outcome", static_cast<int>(outcome), 257 "Bluetooth.DiscoverySession.Stop.Outcome", static_cast<int>(outcome),
257 static_cast<int>(UMABluetoothDiscoverySessionOutcome::COUNT)); 258 static_cast<int>(UMABluetoothDiscoverySessionOutcome::COUNT));
258 } 259 }
259 260
260 } // namespace device 261 } // namespace device
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_adapter.h ('k') | device/bluetooth/bluetooth_adapter_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698