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

Unified Diff: chrome/browser/resources/options/chromeos/bluetooth_pair_device_overlay.js

Issue 1580543002: bluetooth: Chrome OS UI code fix. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/chromeos/bluetooth_pair_device_overlay.js
diff --git a/chrome/browser/resources/options/chromeos/bluetooth_pair_device_overlay.js b/chrome/browser/resources/options/chromeos/bluetooth_pair_device_overlay.js
index 0edff67c6731c6b8b4280c833a469196b834e396..b3ece1c910739e416428ba8c74b95f1ac71ce10c 100644
--- a/chrome/browser/resources/options/chromeos/bluetooth_pair_device_overlay.js
+++ b/chrome/browser/resources/options/chromeos/bluetooth_pair_device_overlay.js
@@ -556,19 +556,19 @@ cr.define('options', function() {
case chrome.bluetoothPrivate.ConnectResultType.CONNECTION_CONGESTED:
message = 'bluetoothConnectConnectionCongested';
break;
- case chrome.bluetoothPrivate.ConnctResultType.INSUFFICIENT_ENCRYPTION:
+ case chrome.bluetoothPrivate.ConnectResultType.INSUFFICIENT_ENCRYPTION:
message = 'bluetoothConnectInsufficientEncryption';
break;
- case chrome.bluetoothPrivate.ConnctResultType.OFFSET_INVALID:
+ case chrome.bluetoothPrivate.ConnectResultType.OFFSET_INVALID:
message = 'bluetoothConnectOffsetInvalid';
break;
- case chrome.bluetoothPrivate.ConnctResultType.READ_NOT_PERMITTED:
+ case chrome.bluetoothPrivate.ConnectResultType.READ_NOT_PERMITTED:
message = 'bluetoothConnectReadNotPermitted';
break;
- case chrome.bluetoothPrivate.ConnctResultType.REQUEST_NOT_SUPPORTED:
+ case chrome.bluetoothPrivate.ConnectResultType.REQUEST_NOT_SUPPORTED:
message = 'bluetoothConnectRequestNotSupported';
break;
- case chrome.bluetoothPrivate.ConnctResultType.WRITE_NOT_PERMITTED:
+ case chrome.bluetoothPrivate.ConnectResultType.WRITE_NOT_PERMITTED:
message = 'bluetoothConnectWriteNotPermitted';
break;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698