Skip to content

Commit

Permalink
Add chrome.system.display.ActiveState enum and property
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 544758980
  • Loading branch information
Closure Team authored and copybara-github committed Jun 30, 2023
1 parent eb50b8a commit 642bbf6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions contrib/externs/chrome_extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -7131,6 +7131,15 @@ chrome.system.display.MirrorMode = {
chrome.system.display.Bounds;


/**
* @enum {string}
* @see TODO(user): link to docs once published
*/
chrome.system.display.ActiveState = {
ACTIVE: '',
INACTIVE: '',
};

/**
* @typedef {!{
* left: number,
Expand Down Expand Up @@ -7303,6 +7312,10 @@ chrome.system.display.DisplayUnitInfo.prototype.isInternal;
chrome.system.display.DisplayUnitInfo.prototype.isEnabled;


/** @type {?chrome.system.display.ActiveState} */
chrome.system.display.DisplayUnitInfo.prototype.activeState;


/** @type {number} */
chrome.system.display.DisplayUnitInfo.prototype.dpiX;

Expand Down

0 comments on commit 642bbf6

Please sign in to comment.