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

Unified Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.h

Issue 1945823003: bluetooth: Remove BluetoothAdvertisementData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Remove fake adapters Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.h
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.h b/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.h
index 7d5e1db74939c4458fad3010859dc7a78db52d43..eaf8068c2a736616aaa8408dcc6efb4d95d48061 100644
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.h
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.h
@@ -8,7 +8,6 @@
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/dom/ActiveDOMObject.h"
#include "modules/EventTargetModules.h"
-#include "modules/bluetooth/BluetoothAdvertisingData.h"
#include "modules/bluetooth/BluetoothRemoteGATTServer.h"
#include "platform/heap/Heap.h"
#include "public/platform/modules/bluetooth/WebBluetoothDevice.h"
@@ -72,7 +71,6 @@ public:
// IDL exposed interface:
String id() { return m_webDevice->id; }
String name() { return m_webDevice->name; }
- BluetoothAdvertisingData* adData() { return m_adData; }
BluetoothRemoteGATTServer* gatt() { return m_gatt; }
Vector<String> uuids();
// TODO(ortuno): Remove connectGATT
@@ -83,7 +81,6 @@ public:
private:
OwnPtr<WebBluetoothDevice> m_webDevice;
- Member<BluetoothAdvertisingData> m_adData;
Member<BluetoothRemoteGATTServer> m_gatt;
};

Powered by Google App Engine
This is Rietveld 408576698