| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "config.h" |
| 6 #include "modules/bluetooth/BluetoothAdvertisingData.h" |
| 7 |
| 8 namespace blink { |
| 9 |
| 10 BluetoothAdvertisingData::BluetoothAdvertisingData() |
| 11 // : m_appearance(0) |
| 12 // , m_txPower(0) |
| 13 // , m_rssi(0) |
| 14 : m_manufacturerData(new ManufacturerDataMap()) |
| 15 // , m_serviceData(ServiceDataMap::create()) |
| 16 { |
| 17 } |
| 18 |
| 19 BluetoothAdvertisingData* BluetoothAdvertisingData::create() |
| 20 { |
| 21 return new BluetoothAdvertisingData(); |
| 22 } |
| 23 |
| 24 DEFINE_TRACE(BluetoothAdvertisingData) |
| 25 { |
| 26 // visitor->trace(m_manufacturerData); |
| 27 // visitor->trace(m_properties); |
| 28 } |
| 29 |
| 30 } // namespace blink |
| OLD | NEW |