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

Unified Diff: content/common/bluetooth/bluetooth_device.h

Issue 1922923002: bluetooth: Move requestDevice to mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-separate-tests-request-device
Patch Set: Change ref to pointer 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
« no previous file with comments | « content/common/bluetooth/PRESUBMIT.py ('k') | content/common/bluetooth/bluetooth_device.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/bluetooth/bluetooth_device.h
diff --git a/content/common/bluetooth/bluetooth_device.h b/content/common/bluetooth/bluetooth_device.h
deleted file mode 100644
index 5d731a96d1f4765e31e718f37d87bb2e9eb81735..0000000000000000000000000000000000000000
--- a/content/common/bluetooth/bluetooth_device.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_COMMON_BLUETOOTH_BLUETOOTH_DEVICE_H_
-#define CONTENT_COMMON_BLUETOOTH_BLUETOOTH_DEVICE_H_
-
-#include <stdint.h>
-
-#include <string>
-
-#include "base/strings/string16.h"
-#include "content/common/content_export.h"
-#include "device/bluetooth/bluetooth_device.h"
-
-namespace content {
-
-// Data sent over IPC representing a Bluetooth device, corresponding to
-// blink::WebBluetoothDevice.
-struct CONTENT_EXPORT BluetoothDevice {
- BluetoothDevice();
- BluetoothDevice(const std::string& id,
- const base::string16& name,
- const std::vector<std::string>& uuids);
- ~BluetoothDevice();
-
- static std::vector<std::string> UUIDsFromBluetoothUUIDs(
- const device::BluetoothDevice::UUIDList& uuid_list);
-
- std::string id;
- base::string16 name;
- std::vector<std::string> uuids; // 128bit UUIDs with dashes. 36 chars.
-};
-
-} // namespace content
-
-#endif // CONTENT_COMMON_BLUETOOTH_BLUETOOTH_DEVICE_H_
« no previous file with comments | « content/common/bluetooth/PRESUBMIT.py ('k') | content/common/bluetooth/bluetooth_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698