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

Unified Diff: device/bluetooth/public/interfaces/gatt_result_enum_traits.cc

Issue 2627243002: bluetooth: Add control for reading/writing of characteristics to internals page. (Closed)
Patch Set: Remove TypeConverter, add EnumTraits for GattResult Created 3 years, 11 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: device/bluetooth/public/interfaces/gatt_result_enum_traits.cc
diff --git a/device/bluetooth/public/interfaces/gatt_result_enum_traits.cc b/device/bluetooth/public/interfaces/gatt_result_enum_traits.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1a8374df3ab7ff4cbbe3de209c33b481815b2bdf
--- /dev/null
+++ b/device/bluetooth/public/interfaces/gatt_result_enum_traits.cc
@@ -0,0 +1,36 @@
+// Copyright 2017 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.
+
+#include "device/bluetooth/public/interfaces/gatt_result_enum_traits.h"
+
+namespace mojo {
+
+// static
+bluetooth::mojom::GattResult
+EnumTraits<bluetooth::mojom::GattResult,
+ device::BluetoothGattService::GattErrorCode>::
+ ToMojom(const device::BluetoothGattService::GattErrorCode& input) {
+ switch (input) {
+ case device::BluetoothGattService::GattErrorCode::GATT_ERROR_UNKNOWN:
+ return bluetooth::mojom::GattResult::UNKNOWN;
+ case device::BluetoothGattService::GattErrorCode::GATT_ERROR_FAILED:
+ return bluetooth::mojom::GattResult::FAILED;
+ case device::BluetoothGattService::GattErrorCode::GATT_ERROR_IN_PROGRESS:
+ return bluetooth::mojom::GattResult::IN_PROGRESS;
+ case device::BluetoothGattService::GattErrorCode::GATT_ERROR_INVALID_LENGTH:
+ return bluetooth::mojom::GattResult::INVALID_LENGTH;
+ case device::BluetoothGattService::GattErrorCode::GATT_ERROR_NOT_PERMITTED:
+ return bluetooth::mojom::GattResult::NOT_PERMITTED;
+ case device::BluetoothGattService::GattErrorCode::GATT_ERROR_NOT_AUTHORIZED:
+ return bluetooth::mojom::GattResult::NOT_AUTHORIZED;
+ case device::BluetoothGattService::GattErrorCode::GATT_ERROR_NOT_PAIRED:
+ return bluetooth::mojom::GattResult::NOT_PAIRED;
+ case device::BluetoothGattService::GattErrorCode::GATT_ERROR_NOT_SUPPORTED:
+ return bluetooth::mojom::GattResult::NOT_SUPPORTED;
+ }
+ NOTREACHED();
+ return bluetooth::mojom::GattResult::NOT_SUPPORTED;
+}
+
+} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698