Skip to content

Commit

Permalink
Roll closure compiler
Browse files Browse the repository at this point in the history
Change log:
google/closure-compiler@2f95290...c64418f
chrome_extensions.js: 754b5d249801020f5d71df9b7b576550f56972dc -> 462f6bc6508621ebeb7cf9a51fca7d069d2a7b85

R=dbeam@chromium.org
TBR=sergeyu

Review URL: https://codereview.chromium.org/2180623002 .

Cr-Commit-Position: refs/heads/master@{#407318}
  • Loading branch information
freshp86 committed Jul 23, 2016
1 parent d9e8198 commit 23b3ab8
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 3 deletions.
2 changes: 1 addition & 1 deletion remoting/webapp/js_proto/chrome_mocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ chromeMocks.runtime.connectNative = function(application) {
return port;
};

/** @const {Object<!chromeMocks.runtime.Port>} */
/** @type {Object<!chromeMocks.runtime.Port>} */
var nativePorts = null;

/** @type {string} */
Expand Down
2 changes: 1 addition & 1 deletion third_party/closure_compiler/README.chromium
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Short Name: closure-compiler
URL: http://github.com/google/closure-compiler
Version: v20150729-236-gad656a1
Date: 2015/08/26 08:46
Revision: 2f95290ea61dd4f1b5a3bf9d0fe3aa8e3244babf
Revision: c64418fd5518bb60aeb6a627d2bcc46a3d4be788
License: Apache 2.0
License File: LICENSE
Security Critical: no
Expand Down
Binary file modified third_party/closure_compiler/compiler/compiler.jar
Binary file not shown.
71 changes: 70 additions & 1 deletion third_party/closure_compiler/externs/chrome_extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {};

Expand Down Expand Up @@ -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
Expand Down
Binary file modified third_party/closure_compiler/runner/runner.jar
Binary file not shown.

0 comments on commit 23b3ab8

Please sign in to comment.