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

Unified Diff: chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc

Issue 1464443002: bluetooth: android: Add BluetoothDevice::ConnectErrorCode enums (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: III Created 5 years, 1 month 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: chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
diff --git a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
index 1defd65bb916c533d3b7827c563eec866eb012c3..f4a7a7196bffab390d8df82ac2e1585605fd9c92 100644
--- a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
@@ -91,6 +91,20 @@ void BluetoothOptionsHandler::GetLocalizedValues(
IDS_OPTIONS_SETTINGS_BLUETOOTH_CONNECT_AUTH_TIMEOUT },
{ "bluetoothConnectUnsupportedDevice",
IDS_OPTIONS_SETTINGS_BLUETOOTH_CONNECT_UNSUPPORTED_DEVICE },
+ { "bluetoothConnectAttributeLengthInvalid",
+ IDS_OPTIONS_SETTINGS_BLUETOOTH_CONNECT_ATTRIBUTE_LENGTH_INVALID },
+ { "bluetoothConnectConnectionCongested",
+ IDS_OPTIONS_SETTINGS_BLUETOOTH_CONNECT_CONNECTION_CONGESTED },
+ { "bluetoothConnectInsufficientEncryption",
+ IDS_OPTIONS_SETTINGS_BLUETOOTH_CONNECT_INSUFFICIENT_ENCRYPTION },
+ { "bluetoothConnectOffsetInvalid",
+ IDS_OPTIONS_SETTINGS_BLUETOOTH_CONNECT_OFFSET_INVALID },
+ { "bluetoothConnectReadFailed",
scheib 2015/11/26 00:02:51 Enum and string should use 'permitted' instead of
+ IDS_OPTIONS_SETTINGS_BLUETOOTH_CONNECT_READ_FAILED },
+ { "bluetoothConnectRequestNotSupported",
+ IDS_OPTIONS_SETTINGS_BLUETOOTH_CONNECT_REQUEST_NOT_SUPPORTED },
+ { "bluetoothConnectWriteFailed",
scheib 2015/11/26 00:02:51 Enum and string should use 'permitted' instead of
Kai Jiang 2015/11/29 10:40:51 Done.
+ IDS_OPTIONS_SETTINGS_BLUETOOTH_CONNECT_WRITE_FAILED },
{ "bluetoothDisconnectFailed",
IDS_OPTIONS_SETTINGS_BLUETOOTH_DISCONNECT_FAILED },
{ "bluetoothForgetFailed",

Powered by Google App Engine
This is Rietveld 408576698