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

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

Issue 2789583004: Add a color argument to accessibilityPrivate.setFocusRing (Closed)
Patch Set: Rebase Created 3 years, 9 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 | « chrome/common/extensions/api/accessibility_private.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/closure_compiler/externs/accessibility_private.js
diff --git a/third_party/closure_compiler/externs/accessibility_private.js b/third_party/closure_compiler/externs/accessibility_private.js
index f4cf5d3ef1b0941e0c84041967cf8832a8f56df8..f092c0ec13bee3696effa884f4130c7a36c8bbcb 100644
--- a/third_party/closure_compiler/externs/accessibility_private.js
+++ b/third_party/closure_compiler/externs/accessibility_private.js
@@ -74,9 +74,11 @@ chrome.accessibilityPrivate.setNativeAccessibilityEnabled = function(enabled) {}
* Set the bounds of the accessibility focus ring.
* @param {!Array<!chrome.accessibilityPrivate.ScreenRect>} rects Array of
* rectangles to draw the accessibility focus ring around.
+ * @param {string=} opt_color CSS-style hex color string beginning with "#"
+ * like "#FF9982" or "#EEE".
* @see https://developer.chrome.com/extensions/accessibilityPrivate#method-setFocusRing
*/
-chrome.accessibilityPrivate.setFocusRing = function(rects) {};
+chrome.accessibilityPrivate.setFocusRing = function(rects, opt_color) {};
/**
* Sets the calling extension as a listener of all keyboard events optionally
« no previous file with comments | « chrome/common/extensions/api/accessibility_private.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698