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

Side by Side Diff: chrome/common/extensions/api/automation.idl

Issue 2903973002: Rich editable text implementation using spannables (Closed)
Patch Set: Make boolean expressions explicit. Created 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // The <code>chrome.automation</code> API allows developers to access the 5 // The <code>chrome.automation</code> API allows developers to access the
6 // automation (accessibility) tree for the browser. The tree resembles the DOM 6 // automation (accessibility) tree for the browser. The tree resembles the DOM
7 // tree, but only exposes the <em>semantic</em> structure of a page. It can be 7 // tree, but only exposes the <em>semantic</em> structure of a page. It can be
8 // used to programmatically interact with a page by examining names, roles, and 8 // used to programmatically interact with a page by examining names, roles, and
9 // states, listening for events, and performing actions on nodes. 9 // states, listening for events, and performing actions on nodes.
10 [nocompile] namespace automation { 10 [nocompile] namespace automation {
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 661
662 // The RGBA foreground color of this subtree, as an integer. 662 // The RGBA foreground color of this subtree, as an integer.
663 long? color; 663 long? color;
664 664
665 // The RGBA background color of this subtree, as an integer. 665 // The RGBA background color of this subtree, as an integer.
666 long? backgroundColor; 666 long? backgroundColor;
667 667
668 // The RGBA color of an input element whose value is a color. 668 // The RGBA color of an input element whose value is a color.
669 long? colorValue; 669 long? colorValue;
670 670
671 // Indicates node text is bold.
672 boolean bold;
673
674 // Indicates node text is italic.
675 boolean italic;
676
677 // Indicates node text is underline.
678 boolean underline;
679
680 // Indicates node text is line through.
681 boolean lineThrough;
682
671 // 683 //
672 // Walking the tree. 684 // Walking the tree.
673 // 685 //
674 686
675 AutomationNode[] children; 687 AutomationNode[] children;
676 AutomationNode? parent; 688 AutomationNode? parent;
677 AutomationNode? firstChild; 689 AutomationNode? firstChild;
678 AutomationNode? lastChild; 690 AutomationNode? lastChild;
679 AutomationNode? previousSibling; 691 AutomationNode? previousSibling;
680 AutomationNode? nextSibling; 692 AutomationNode? nextSibling;
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
807 // Everything in the tree between the two node/offset pairs gets included 819 // Everything in the tree between the two node/offset pairs gets included
808 // in the selection. The anchor is where the user started the selection, 820 // in the selection. The anchor is where the user started the selection,
809 // while the focus is the point at which the selection gets extended 821 // while the focus is the point at which the selection gets extended
810 // e.g. when dragging with a mouse or using the keyboard. For nodes with 822 // e.g. when dragging with a mouse or using the keyboard. For nodes with
811 // the role staticText, the offset gives the character offset within 823 // the role staticText, the offset gives the character offset within
812 // the value where the selection starts or ends, respectively. 824 // the value where the selection starts or ends, respectively.
813 [nocompile] static void setDocumentSelection( 825 [nocompile] static void setDocumentSelection(
814 SetDocumentSelectionParams params); 826 SetDocumentSelectionParams params);
815 }; 827 };
816 }; 828 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698