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

Unified Diff: third_party/closure_compiler/externs/chrome_extensions.js

Issue 2180623002: Roll closure compiler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix newly uncovered compilation error. Created 4 years, 5 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 | « third_party/closure_compiler/compiler/compiler.jar ('k') | third_party/closure_compiler/runner/runner.jar » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/closure_compiler/externs/chrome_extensions.js
diff --git a/third_party/closure_compiler/externs/chrome_extensions.js b/third_party/closure_compiler/externs/chrome_extensions.js
index 351584b6f9715fca49547916b22eb0ad2ac17b6b..6c046f69dff6877fe3a82b8805a13e6912034915 100644
--- a/third_party/closure_compiler/externs/chrome_extensions.js
+++ b/third_party/closure_compiler/externs/chrome_extensions.js
@@ -9341,7 +9341,7 @@ chrome.gcdPrivate.onDeviceRemoved;
/**
* @const
- * @see http://goo.gl/bKHibo
+ * @see https://cs.chromium.org/chromium/src/extensions/common/api/bluetooth_private.idl
*/
chrome.bluetoothPrivate = {};
@@ -9442,6 +9442,75 @@ chrome.bluetoothPrivate.PairingEventEvent.prototype.hasListeners =
chrome.bluetoothPrivate.onPairing;
+/**
+ * @param {string} deviceAddress
+ * @param {function(number, string): void=} opt_callback
+ */
+chrome.bluetoothPrivate.pair = function(deviceAddress, opt_callback) {};
+
+
+/**
+ * @enum {string}
+ * @see https://developer.chrome.com/extensions/bluetoothPrivate#type-PairingResponse
+ */
+chrome.bluetoothPrivate.PairingResponse = {
+ CONFIRM: '',
+ REJECT: '',
+ CANCEL: '',
+};
+
+
+/**
+ * @enum {string}
+ * @see https://developer.chrome.com/extensions/bluetoothPrivate#type-PairingEventType
+ */
+chrome.bluetoothPrivate.PairingEventType = {
+ REQUEST_PINCODE: '',
+ DISPLAY_PINCODE: '',
+ REQUEST_PASSKEY: '',
+ DISPLAY_PASSKEY: '',
+ KEYS_ENTERED: '',
+ CONFIRM_PASSKEY: '',
+ REQUEST_AUTHORIZATION: '',
+ COMPLETE: '',
+};
+
+
+/**
+ * @enum {string}
+ * @see https://developer.chrome.com/extensions/bluetoothPrivate#type-ConnectResultType
+ */
+chrome.bluetoothPrivate.ConnectResultType = {
+ ALREADY_CONNECTED: '',
+ ATTRIBUTE_LENGTH_INVALID: '',
+ AUTH_CANCELED: '',
+ AUTH_FAILED: '',
+ AUTH_REJECTED: '',
+ AUTH_TIMEOUT: '',
+ CONNECTION_CONGESTED: '',
+ FAILED: '',
+ IN_PROGRESS: '',
+ INSUFFICIENT_ENCRYPTION: '',
+ OFFSET_INVALID: '',
+ READ_NOT_PERMITTED: '',
+ REQUEST_NOT_SUPPORTED: '',
+ SUCCESS: '',
+ UNKNOWN_ERROR: '',
+ UNSUPPORTED_DEVICE: '',
+ WRITE_NOT_PERMITTED: '',
+};
+
+
+/**
+ * @enum {string}
+ * @see https://developer.chrome.com/extensions/bluetoothPrivate#type-TransportType
+ */
+chrome.bluetoothPrivate.TransportType = {
+ LE: '',
+ BREDR: '',
+ DUAL: '',
+};
+
/**
* @const
« no previous file with comments | « third_party/closure_compiler/compiler/compiler.jar ('k') | third_party/closure_compiler/runner/runner.jar » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698