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

Side by Side Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothAdvertisingData.cpp

Issue 1403323007: bluetooth: WIP Advertising Data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-characteristic-properties
Patch Set: Created 5 years, 2 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
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698