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

Side by Side Diff: device/bluetooth/dbus/bluetooth_le_advertisement_service_provider.h

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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef DEVICE_BLUETOOTH_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_ 5 #ifndef DEVICE_BLUETOOTH_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_
6 #define DEVICE_BLUETOOTH_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_ 6 #define DEVICE_BLUETOOTH_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/basictypes.h"
15 #include "base/callback.h" 14 #include "base/callback.h"
15 #include "base/macros.h"
16 #include "base/memory/scoped_ptr.h" 16 #include "base/memory/scoped_ptr.h"
17 #include "dbus/bus.h" 17 #include "dbus/bus.h"
18 #include "dbus/file_descriptor.h" 18 #include "dbus/file_descriptor.h"
19 #include "dbus/object_path.h" 19 #include "dbus/object_path.h"
20 #include "device/bluetooth/bluetooth_export.h" 20 #include "device/bluetooth/bluetooth_export.h"
21 21
22 namespace bluez { 22 namespace bluez {
23 23
24 // BluetoothAdvertisementServiceProvider is used to provide a D-Bus object that 24 // BluetoothAdvertisementServiceProvider is used to provide a D-Bus object that
25 // the Bluetooth daemon can communicate with to advertise data. 25 // the Bluetooth daemon can communicate with to advertise data.
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 // again in our destructor. 73 // again in our destructor.
74 dbus::ObjectPath object_path_; 74 dbus::ObjectPath object_path_;
75 75
76 private: 76 private:
77 DISALLOW_COPY_AND_ASSIGN(BluetoothLEAdvertisementServiceProvider); 77 DISALLOW_COPY_AND_ASSIGN(BluetoothLEAdvertisementServiceProvider);
78 }; 78 };
79 79
80 } // namespace bluez 80 } // namespace bluez
81 81
82 #endif // DEVICE_BLUETOOTH_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_ 82 #endif // DEVICE_BLUETOOTH_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_
OLDNEW
« no previous file with comments | « device/bluetooth/dbus/bluetooth_input_client.cc ('k') | device/bluetooth/dbus/bluetooth_le_advertisement_service_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698