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

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

Issue 2072633002: Add Get/SetDisplayLayout to chrome.system.display extension API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix win Created 4 years, 6 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
Index: third_party/closure_compiler/externs/system_display.js
diff --git a/third_party/closure_compiler/externs/system_display.js b/third_party/closure_compiler/externs/system_display.js
index 82f8db80cd58ae571bb0bb60e2e25beaa1d21cc3..469dfc974c00ec2cca9f2bfa1b30b424ba5f130b 100644
--- a/third_party/closure_compiler/externs/system_display.js
+++ b/third_party/closure_compiler/externs/system_display.js
@@ -59,6 +59,28 @@ chrome.system.display.Insets;
chrome.system.display.DisplayMode;
/**
+ * @enum {string}
+ * @see https://developer.chrome.com/extensions/system.display#type-LayoutPosition
+ */
+chrome.system.display.LayoutPosition = {
+ TOP: 'top',
+ RIGHT: 'right',
+ BOTTOM: 'bottom',
+ LEFT: 'left',
+};
+
+/**
+ * @typedef {{
+ * id: string,
+ * parentId: string,
+ * position: !chrome.system.display.LayoutPosition,
+ * offset: number
+ * }}
+ * @see https://developer.chrome.com/extensions/system.display#type-DisplayLayout
+ */
+chrome.system.display.DisplayLayout;
+
+/**
* @typedef {{
* id: string,
* name: string,
@@ -101,6 +123,14 @@ chrome.system.display.DisplayProperties;
chrome.system.display.getInfo = function(callback) {};
/**
+ * Get the layout info for all displays. NOTE: This is only available to Chrome
+ * OS Kiosk apps and Web UI.
+ * @param {function(!Array<!chrome.system.display.DisplayLayout>):void} callback
+ * @see https://developer.chrome.com/extensions/system.display#method-getDisplayLayout
+ */
+chrome.system.display.getDisplayLayout = function(callback) {};
+
+/**
* Updates the properties for the display specified by |id|, according to the
* information provided in |info|. On failure, $(ref:runtime.lastError) will be
* set. NOTE: This is only available to Chrome OS Kiosk apps and Web UI.
@@ -116,6 +146,16 @@ chrome.system.display.getInfo = function(callback) {};
chrome.system.display.setDisplayProperties = function(id, info, callback) {};
/**
+ * Set the layout for all displays. Any display not included will use the
+ * default layout. If a layout would overlap or be otherwise invalid it will be
+ * adjusted to a valid layout. After layout is resolved, an onDisplayChanged
+ * event will be triggered.
+ * @param {!Array<!chrome.system.display.DisplayLayout>} layouts
+ * @see https://developer.chrome.com/extensions/system.display#method-setDisplayLayout
+ */
+chrome.system.display.setDisplayLayout = function(layouts) {};
+
+/**
* Enables/disables the unified desktop feature. Note that this simply enables
* the feature, but will not change the actual desktop mode. (That is, if the
* desktop is in mirror mode, it will stay in mirror mode) NOTE: This is only
@@ -127,7 +167,8 @@ chrome.system.display.enableUnifiedDesktop = function(enabled) {};
/**
* Starts overscan calibration for a display. This will show an overlay on the
- * screen indicating the current overscan insets.
+ * screen indicating the current overscan insets. If overscan calibration for
+ * display |id| is in progress this will reset calibration.
* @param {string} id The display's unique identifier.
* @see https://developer.chrome.com/extensions/system.display#method-overscanCalibrationStart
*/

Powered by Google App Engine
This is Rietveld 408576698