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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h

Issue 2006043002: Improved the reporting of background color information. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added blank line to test expectations. 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 // Check object state. 94 // Check object state.
95 bool isFocused() const override; 95 bool isFocused() const override;
96 bool isSelected() const override; 96 bool isSelected() const override;
97 97
98 // Whether objects are ignored, i.e. not included in the tree. 98 // Whether objects are ignored, i.e. not included in the tree.
99 AXObjectInclusion defaultObjectInclusion(IgnoredReasons* = nullptr) const ov erride; 99 AXObjectInclusion defaultObjectInclusion(IgnoredReasons* = nullptr) const ov erride;
100 bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override ; 100 bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override ;
101 101
102 // Properties of static elements. 102 // Properties of static elements.
103 const AtomicString& accessKey() const override; 103 const AtomicString& accessKey() const override;
104 RGBA32 backgroundColor() const final; 104 RGBA32 computeBackgroundColor() const final;
105 RGBA32 color() const final; 105 RGBA32 color() const final;
106 String fontFamily() const final; 106 String fontFamily() const final;
107 // Font size is in pixels. 107 // Font size is in pixels.
108 float fontSize() const final; 108 float fontSize() const final;
109 String text() const override; 109 String text() const override;
110 AccessibilityTextDirection textDirection() const final; 110 AccessibilityTextDirection textDirection() const final;
111 int textLength() const override; 111 int textLength() const override;
112 TextStyle getTextStyle() const final; 112 TextStyle getTextStyle() const final;
113 KURL url() const override; 113 KURL url() const override;
114 114
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 AXRange textControlSelection() const; 217 AXRange textControlSelection() const;
218 int indexForVisiblePosition(const VisiblePosition&) const; 218 int indexForVisiblePosition(const VisiblePosition&) const;
219 AXLayoutObject* getUnignoredObjectFromNode(Node&) const; 219 AXLayoutObject* getUnignoredObjectFromNode(Node&) const;
220 }; 220 };
221 221
222 DEFINE_AX_OBJECT_TYPE_CASTS(AXLayoutObject, isAXLayoutObject()); 222 DEFINE_AX_OBJECT_TYPE_CASTS(AXLayoutObject, isAXLayoutObject());
223 223
224 } // namespace blink 224 } // namespace blink
225 225
226 #endif // AXLayoutObject_h 226 #endif // AXLayoutObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698