[email protected] | eaf8a342 | 2012-01-24 23:35:31 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
[email protected] | ba1fa65 | 2011-06-25 05:16:22 | [diff] [blame] | 5 | #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_H_ |
| 6 | #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_H_ |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 7 | |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 8 | #include <map> |
| 9 | #include <utility> |
| 10 | #include <vector> |
| 11 | |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 12 | #include "base/basictypes.h" |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame^] | 13 | #include "base/strings/string16.h" |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 14 | #include "build/build_config.h" |
[email protected] | 0a935a0 | 2012-06-12 22:55:15 | [diff] [blame] | 15 | #include "content/common/accessibility_node_data.h" |
[email protected] | f3112a5 | 2011-09-30 23:47:49 | [diff] [blame] | 16 | #include "content/common/content_export.h" |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 17 | |
[email protected] | 95b3f544 | 2012-05-06 17:10:07 | [diff] [blame] | 18 | #if defined(OS_MACOSX) && __OBJC__ |
| 19 | @class BrowserAccessibilityCocoa; |
[email protected] | e6b3487 | 2012-10-24 20:51:32 | [diff] [blame] | 20 | #endif |
| 21 | |
| 22 | namespace content { |
| 23 | class BrowserAccessibilityManager; |
| 24 | #if defined(OS_WIN) |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 25 | class BrowserAccessibilityWin; |
[email protected] | cd3e2d90 | 2012-05-09 07:05:20 | [diff] [blame] | 26 | #elif defined(TOOLKIT_GTK) |
| 27 | class BrowserAccessibilityGtk; |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 28 | #endif |
| 29 | |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 30 | //////////////////////////////////////////////////////////////////////////////// |
| 31 | // |
| 32 | // BrowserAccessibility |
| 33 | // |
| 34 | // Class implementing the cross platform interface for the Browser-Renderer |
| 35 | // communication of accessibility information, providing accessibility |
| 36 | // to be used by screen readers and other assistive technology (AT). |
| 37 | // |
| 38 | // An implementation for each platform handles platform specific accessibility |
| 39 | // APIs. |
| 40 | // |
| 41 | //////////////////////////////////////////////////////////////////////////////// |
[email protected] | f3112a5 | 2011-09-30 23:47:49 | [diff] [blame] | 42 | class CONTENT_EXPORT BrowserAccessibility { |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 43 | public: |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 44 | // Creates a platform specific BrowserAccessibility. Ownership passes to the |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 45 | // caller. |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 46 | static BrowserAccessibility* Create(); |
| 47 | |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 48 | virtual ~BrowserAccessibility(); |
| 49 | |
[email protected] | b05cd54 | 2011-06-08 01:38:02 | [diff] [blame] | 50 | // Detach all descendants of this subtree and push all of the node pointers, |
| 51 | // including this node, onto the end of |nodes|. |
| 52 | virtual void DetachTree(std::vector<BrowserAccessibility*>* nodes); |
| 53 | |
[email protected] | c47754096 | 2013-03-07 00:43:10 | [diff] [blame] | 54 | // Perform platform-specific initialization. This can be called multiple times |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 55 | // during the lifetime of this instance after the members of this base object |
| 56 | // have been reset with new values from the renderer process. |
[email protected] | a52aa41 | 2011-12-14 19:03:30 | [diff] [blame] | 57 | // Child dependent initialization can be done here. |
| 58 | virtual void PostInitialize() {} |
[email protected] | ee84512 | 2011-09-01 08:44:16 | [diff] [blame] | 59 | |
[email protected] | cd3e2d90 | 2012-05-09 07:05:20 | [diff] [blame] | 60 | // Returns true if this is a native platform-specific object, vs a |
| 61 | // cross-platform generic object. |
| 62 | virtual bool IsNative() const; |
| 63 | |
[email protected] | c47754096 | 2013-03-07 00:43:10 | [diff] [blame] | 64 | // Initialize the tree structure of this object. |
| 65 | void InitializeTreeStructure( |
| 66 | BrowserAccessibilityManager* manager, |
[email protected] | a52aa41 | 2011-12-14 19:03:30 | [diff] [blame] | 67 | BrowserAccessibility* parent, |
[email protected] | c47754096 | 2013-03-07 00:43:10 | [diff] [blame] | 68 | int32 renderer_id, |
| 69 | int32 index_in_parent); |
| 70 | |
| 71 | // Initialize this object's data. |
| 72 | void InitializeData(const AccessibilityNodeData& src); |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 73 | |
[email protected] | 26aef30 | 2013-03-14 22:43:51 | [diff] [blame] | 74 | virtual void SwapChildren(std::vector<BrowserAccessibility*>& children); |
[email protected] | c47754096 | 2013-03-07 00:43:10 | [diff] [blame] | 75 | |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 76 | // Update the parent and index in parent if this node has been moved. |
| 77 | void UpdateParent(BrowserAccessibility* parent, int index_in_parent); |
| 78 | |
[email protected] | a10a5f8 | 2013-05-06 05:24:56 | [diff] [blame] | 79 | // Update this node's location, leaving everything else the same. |
| 80 | virtual void SetLocation(const gfx::Rect& new_location); |
| 81 | |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 82 | // Return true if this object is equal to or a descendant of |ancestor|. |
| 83 | bool IsDescendantOf(BrowserAccessibility* ancestor); |
| 84 | |
| 85 | // Returns the parent of this object, or NULL if it's the root. |
[email protected] | 7f2d9f6b | 2013-06-13 22:57:01 | [diff] [blame] | 86 | BrowserAccessibility* parent() const { return parent_; } |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 87 | |
| 88 | // Returns the number of children of this object. |
[email protected] | 9c1a75a | 2011-03-10 02:38:12 | [diff] [blame] | 89 | uint32 child_count() const { return children_.size(); } |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 90 | |
| 91 | // Return a pointer to the child with the given index. |
[email protected] | 7f2d9f6b | 2013-06-13 22:57:01 | [diff] [blame] | 92 | BrowserAccessibility* GetChild(uint32 child_index) const; |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 93 | |
| 94 | // Return the previous sibling of this object, or NULL if it's the first |
| 95 | // child of its parent. |
| 96 | BrowserAccessibility* GetPreviousSibling(); |
| 97 | |
| 98 | // Return the next sibling of this object, or NULL if it's the last child |
| 99 | // of its parent. |
| 100 | BrowserAccessibility* GetNextSibling(); |
| 101 | |
[email protected] | 9052cca | 2011-11-30 23:59:31 | [diff] [blame] | 102 | // Returns the bounds of this object in coordinates relative to the |
| 103 | // top-left corner of the overall web area. |
[email protected] | 7f2d9f6b | 2013-06-13 22:57:01 | [diff] [blame] | 104 | gfx::Rect GetLocalBoundsRect() const; |
[email protected] | 02747d4e | 2010-11-03 19:10:00 | [diff] [blame] | 105 | |
[email protected] | 9052cca | 2011-11-30 23:59:31 | [diff] [blame] | 106 | // Returns the bounds of this object in screen coordinates. |
[email protected] | 7f2d9f6b | 2013-06-13 22:57:01 | [diff] [blame] | 107 | gfx::Rect GetGlobalBoundsRect() const; |
[email protected] | 9052cca | 2011-11-30 23:59:31 | [diff] [blame] | 108 | |
| 109 | // Returns the deepest descendant that contains the specified point |
| 110 | // (in global screen coordinates). |
[email protected] | 02747d4e | 2010-11-03 19:10:00 | [diff] [blame] | 111 | BrowserAccessibility* BrowserAccessibilityForPoint(const gfx::Point& point); |
| 112 | |
[email protected] | c47754096 | 2013-03-07 00:43:10 | [diff] [blame] | 113 | // Marks this object for deletion, releases our reference to it, and |
| 114 | // recursively calls Destroy() on its children. May not delete |
| 115 | // immediately due to reference counting. |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 116 | // |
[email protected] | c47754096 | 2013-03-07 00:43:10 | [diff] [blame] | 117 | // Reference counting is used on some platforms because the |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 118 | // operating system may hold onto a reference to a BrowserAccessibility |
[email protected] | c47754096 | 2013-03-07 00:43:10 | [diff] [blame] | 119 | // object even after we're through with it. When a BrowserAccessibility |
| 120 | // has had Destroy() called but its reference count is not yet zero, |
| 121 | // queries on this object return failure |
| 122 | virtual void Destroy(); |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 123 | |
| 124 | // Subclasses should override this to support platform reference counting. |
| 125 | virtual void NativeAddReference() { } |
| 126 | |
| 127 | // Subclasses should override this to support platform reference counting. |
[email protected] | 402da9f | 2011-03-08 19:45:41 | [diff] [blame] | 128 | virtual void NativeReleaseReference(); |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 129 | |
| 130 | // |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 131 | // Accessors |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 132 | // |
| 133 | |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 134 | const std::vector<BrowserAccessibility*>& children() const { |
| 135 | return children_; |
| 136 | } |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame^] | 137 | const std::vector<std::pair<std::string, std::string> >& |
| 138 | html_attributes() const { |
[email protected] | 0d7dad6 | 2010-10-19 21:18:50 | [diff] [blame] | 139 | return html_attributes_; |
| 140 | } |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 141 | int32 index_in_parent() const { return index_in_parent_; } |
[email protected] | 0aed2f5 | 2011-03-23 18:06:36 | [diff] [blame] | 142 | gfx::Rect location() const { return location_; } |
[email protected] | 0d7dad6 | 2010-10-19 21:18:50 | [diff] [blame] | 143 | BrowserAccessibilityManager* manager() const { return manager_; } |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame^] | 144 | const std::string& name() const { return name_; } |
[email protected] | 0d7dad6 | 2010-10-19 21:18:50 | [diff] [blame] | 145 | int32 renderer_id() const { return renderer_id_; } |
| 146 | int32 role() const { return role_; } |
[email protected] | 0d7dad6 | 2010-10-19 21:18:50 | [diff] [blame] | 147 | int32 state() const { return state_; } |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame^] | 148 | const std::string& value() const { return value_; } |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 149 | bool instance_active() const { return instance_active_; } |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 150 | |
[email protected] | 95b3f544 | 2012-05-06 17:10:07 | [diff] [blame] | 151 | #if defined(OS_MACOSX) && __OBJC__ |
[email protected] | cd3e2d90 | 2012-05-09 07:05:20 | [diff] [blame] | 152 | BrowserAccessibilityCocoa* ToBrowserAccessibilityCocoa(); |
[email protected] | 1dbadbd | 2010-10-13 18:50:10 | [diff] [blame] | 153 | #elif defined(OS_WIN) |
[email protected] | cd3e2d90 | 2012-05-09 07:05:20 | [diff] [blame] | 154 | BrowserAccessibilityWin* ToBrowserAccessibilityWin(); |
| 155 | #elif defined(TOOLKIT_GTK) |
| 156 | BrowserAccessibilityGtk* ToBrowserAccessibilityGtk(); |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 157 | #endif |
| 158 | |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame^] | 159 | // Accessing accessibility attributes: |
| 160 | // |
| 161 | // There are dozens of possible attributes for an accessibility node, |
| 162 | // but only a few tend to apply to any one object, so we store them |
| 163 | // in sparse arrays of <attribute id, attribute value> pairs, organized |
| 164 | // by type (bool, int, float, string, int list). |
| 165 | // |
| 166 | // There are three accessors for each type of attribute: one that returns |
| 167 | // true if the attribute is present and false if not, one that takes a |
| 168 | // pointer argument and returns true if the attribute is present (if you |
| 169 | // need to distinguish between the default value and a missing attribute), |
| 170 | // and another that returns the default value for that type if the |
| 171 | // attribute is not present. In addition, strings can be returned as |
| 172 | // either std::string or string16, for convenience. |
[email protected] | ee84512 | 2011-09-01 08:44:16 | [diff] [blame] | 173 | |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame^] | 174 | bool HasBoolAttribute(AccessibilityNodeData::BoolAttribute attr) const; |
| 175 | bool GetBoolAttribute(AccessibilityNodeData::BoolAttribute attr) const; |
| 176 | bool GetBoolAttribute(AccessibilityNodeData::BoolAttribute attr, |
| 177 | bool* value) const; |
| 178 | |
| 179 | bool HasFloatAttribute(AccessibilityNodeData::FloatAttribute attr) const; |
| 180 | float GetFloatAttribute(AccessibilityNodeData::FloatAttribute attr) const; |
[email protected] | e6b3487 | 2012-10-24 20:51:32 | [diff] [blame] | 181 | bool GetFloatAttribute(AccessibilityNodeData::FloatAttribute attr, |
[email protected] | 0a935a0 | 2012-06-12 22:55:15 | [diff] [blame] | 182 | float* value) const; |
[email protected] | 02747d4e | 2010-11-03 19:10:00 | [diff] [blame] | 183 | |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame^] | 184 | bool HasIntAttribute(AccessibilityNodeData::IntAttribute attribute) const; |
| 185 | int GetIntAttribute(AccessibilityNodeData::IntAttribute attribute) const; |
[email protected] | e6b3487 | 2012-10-24 20:51:32 | [diff] [blame] | 186 | bool GetIntAttribute(AccessibilityNodeData::IntAttribute attribute, |
[email protected] | 0a935a0 | 2012-06-12 22:55:15 | [diff] [blame] | 187 | int* value) const; |
[email protected] | ee84512 | 2011-09-01 08:44:16 | [diff] [blame] | 188 | |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame^] | 189 | bool HasStringAttribute( |
| 190 | AccessibilityNodeData::StringAttribute attribute) const; |
| 191 | const std::string& GetStringAttribute( |
| 192 | AccessibilityNodeData::StringAttribute attribute) const; |
| 193 | bool GetStringAttribute(AccessibilityNodeData::StringAttribute attribute, |
| 194 | std::string* value) const; |
| 195 | |
| 196 | bool GetString16Attribute(AccessibilityNodeData::StringAttribute attribute, |
| 197 | string16* value) const; |
| 198 | string16 GetString16Attribute( |
| 199 | AccessibilityNodeData::StringAttribute attribute) const; |
| 200 | |
| 201 | bool HasIntListAttribute( |
| 202 | AccessibilityNodeData::IntListAttribute attribute) const; |
| 203 | const std::vector<int32>& GetIntListAttribute( |
| 204 | AccessibilityNodeData::IntListAttribute attribute) const; |
| 205 | bool GetIntListAttribute(AccessibilityNodeData::IntListAttribute attribute, |
| 206 | std::vector<int32>* value) const; |
| 207 | |
| 208 | void SetStringAttribute( |
| 209 | AccessibilityNodeData::StringAttribute attribute, |
| 210 | const std::string& value); |
[email protected] | ee84512 | 2011-09-01 08:44:16 | [diff] [blame] | 211 | |
| 212 | // Retrieve the value of a html attribute from the attribute map and |
| 213 | // returns true if found. |
| 214 | bool GetHtmlAttribute(const char* attr, string16* value) const; |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame^] | 215 | bool GetHtmlAttribute(const char* attr, std::string* value) const; |
[email protected] | ee84512 | 2011-09-01 08:44:16 | [diff] [blame] | 216 | |
[email protected] | 38f1e3b05 | 2012-02-10 21:46:07 | [diff] [blame] | 217 | // Utility method to handle special cases for ARIA booleans, tristates and |
| 218 | // booleans which have a "mixed" state. |
| 219 | // |
| 220 | // Warning: the term "Tristate" is used loosely by the spec and here, |
| 221 | // as some attributes support a 4th state. |
| 222 | // |
| 223 | // The following attributes are appropriate to use with this method: |
| 224 | // aria-selected (selectable) |
| 225 | // aria-grabbed (grabbable) |
| 226 | // aria-expanded (expandable) |
| 227 | // aria-pressed (toggleable/pressable) -- supports 4th "mixed" state |
| 228 | // aria-checked (checkable) -- supports 4th "mixed state" |
| 229 | bool GetAriaTristate(const char* attr_name, |
| 230 | bool* is_defined, |
| 231 | bool* is_mixed) const; |
| 232 | |
[email protected] | c43b0dc | 2011-12-03 04:31:13 | [diff] [blame] | 233 | // Returns true if the bit corresponding to the given state enum is 1. |
[email protected] | e6b3487 | 2012-10-24 20:51:32 | [diff] [blame] | 234 | bool HasState(AccessibilityNodeData::State state_enum) const; |
[email protected] | c43b0dc | 2011-12-03 04:31:13 | [diff] [blame] | 235 | |
[email protected] | ee84512 | 2011-09-01 08:44:16 | [diff] [blame] | 236 | // Returns true if this node is an editable text field of any kind. |
| 237 | bool IsEditableText() const; |
[email protected] | 02747d4e | 2010-11-03 19:10:00 | [diff] [blame] | 238 | |
[email protected] | d1029c5 | 2011-10-21 21:59:51 | [diff] [blame] | 239 | // Append the text from this node and its children. |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame^] | 240 | std::string GetTextRecursive() const; |
[email protected] | d1029c5 | 2011-10-21 21:59:51 | [diff] [blame] | 241 | |
[email protected] | aa50cea8 | 2010-11-05 23:02:38 | [diff] [blame] | 242 | protected: |
[email protected] | a52aa41 | 2011-12-14 19:03:30 | [diff] [blame] | 243 | // Perform platform specific initialization. This can be called multiple times |
| 244 | // during the lifetime of this instance after the members of this base object |
| 245 | // have been reset with new values from the renderer process. |
| 246 | // Perform child independent initialization in this method. |
[email protected] | c47754096 | 2013-03-07 00:43:10 | [diff] [blame] | 247 | virtual void PreInitialize() {} |
[email protected] | a52aa41 | 2011-12-14 19:03:30 | [diff] [blame] | 248 | |
[email protected] | aa50cea8 | 2010-11-05 23:02:38 | [diff] [blame] | 249 | BrowserAccessibility(); |
| 250 | |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 251 | // The manager of this tree of accessibility objects; needed for |
| 252 | // global operations like focus tracking. |
| 253 | BrowserAccessibilityManager* manager_; |
| 254 | |
| 255 | // The parent of this object, may be NULL if we're the root object. |
| 256 | BrowserAccessibility* parent_; |
| 257 | |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 258 | // The index of this within its parent object. |
| 259 | int32 index_in_parent_; |
| 260 | |
| 261 | // The ID of this object in the renderer process. |
| 262 | int32 renderer_id_; |
| 263 | |
| 264 | // The children of this object. |
| 265 | std::vector<BrowserAccessibility*> children_; |
| 266 | |
| 267 | // Accessibility metadata from the renderer |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame^] | 268 | std::string name_; |
| 269 | std::string value_; |
| 270 | std::vector<std::pair< |
| 271 | AccessibilityNodeData::BoolAttribute, bool> > bool_attributes_; |
| 272 | std::vector<std::pair< |
| 273 | AccessibilityNodeData::FloatAttribute, float> > float_attributes_; |
| 274 | std::vector<std::pair< |
| 275 | AccessibilityNodeData::IntAttribute, int> > int_attributes_; |
| 276 | std::vector<std::pair< |
| 277 | AccessibilityNodeData::StringAttribute, std::string> > string_attributes_; |
| 278 | std::vector<std::pair< |
| 279 | AccessibilityNodeData::IntListAttribute, std::vector<int32> > > |
| 280 | intlist_attributes_; |
| 281 | std::vector<std::pair<std::string, std::string> > html_attributes_; |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 282 | int32 role_; |
| 283 | int32 state_; |
[email protected] | 0aed2f5 | 2011-03-23 18:06:36 | [diff] [blame] | 284 | gfx::Rect location_; |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 285 | |
| 286 | // BrowserAccessibility objects are reference-counted on some platforms. |
| 287 | // When we're done with this object and it's removed from our accessibility |
| 288 | // tree, a client may still be holding onto a pointer to this object, so |
| 289 | // we mark it as inactive so that calls to any of this object's methods |
| 290 | // immediately return failure. |
| 291 | bool instance_active_; |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 292 | |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 293 | private: |
| 294 | DISALLOW_COPY_AND_ASSIGN(BrowserAccessibility); |
| 295 | }; |
| 296 | |
[email protected] | e6b3487 | 2012-10-24 20:51:32 | [diff] [blame] | 297 | } // namespace content |
| 298 | |
[email protected] | ba1fa65 | 2011-06-25 05:16:22 | [diff] [blame] | 299 | #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_H_ |