[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" |
mohan.reddy | 0079fba | 2014-09-25 07:25:23 | [diff] [blame] | 14 | #include "base/strings/string_split.h" |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 15 | #include "build/build_config.h" |
[email protected] | f3112a5 | 2011-09-30 23:47:49 | [diff] [blame] | 16 | #include "content/common/content_export.h" |
[email protected] | 10760e4a | 2013-09-04 23:32:20 | [diff] [blame] | 17 | #include "third_party/WebKit/public/web/WebAXEnums.h" |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 18 | #include "ui/accessibility/ax_node.h" |
[email protected] | 5eec2f5 | 2014-01-06 22:30:54 | [diff] [blame] | 19 | #include "ui/accessibility/ax_node_data.h" |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 20 | |
[email protected] | 95b3f544 | 2012-05-06 17:10:07 | [diff] [blame] | 21 | #if defined(OS_MACOSX) && __OBJC__ |
| 22 | @class BrowserAccessibilityCocoa; |
[email protected] | e6b3487 | 2012-10-24 20:51:32 | [diff] [blame] | 23 | #endif |
| 24 | |
| 25 | namespace content { |
| 26 | class BrowserAccessibilityManager; |
| 27 | #if defined(OS_WIN) |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 28 | class BrowserAccessibilityWin; |
| 29 | #endif |
| 30 | |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 31 | //////////////////////////////////////////////////////////////////////////////// |
| 32 | // |
| 33 | // BrowserAccessibility |
| 34 | // |
dmazzoni | 0b5d248 | 2014-09-10 19:45:57 | [diff] [blame] | 35 | // A BrowserAccessibility object represents one node in the accessibility |
| 36 | // tree on the browser side. It exactly corresponds to one WebAXObject from |
| 37 | // Blink. It's owned by a BrowserAccessibilityManager. |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 38 | // |
dmazzoni | 0b5d248 | 2014-09-10 19:45:57 | [diff] [blame] | 39 | // There are subclasses of BrowserAccessibility for each platform where |
| 40 | // we implement native accessibility APIs. This base class is used occasionally |
| 41 | // for tests. |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 42 | // |
| 43 | //////////////////////////////////////////////////////////////////////////////// |
[email protected] | f3112a5 | 2011-09-30 23:47:49 | [diff] [blame] | 44 | class CONTENT_EXPORT BrowserAccessibility { |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 45 | public: |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 46 | // Creates a platform specific BrowserAccessibility. Ownership passes to the |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 47 | // caller. |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 48 | static BrowserAccessibility* Create(); |
| 49 | |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 50 | virtual ~BrowserAccessibility(); |
| 51 | |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 52 | // Called only once, immediately after construction. The constructor doesn't |
| 53 | // take any arguments because in the Windows subclass we use a special |
| 54 | // function to construct a COM object. |
| 55 | virtual void Init(BrowserAccessibilityManager* manager, ui::AXNode* node); |
[email protected] | b05cd54 | 2011-06-08 01:38:02 | [diff] [blame] | 56 | |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 57 | // Called after the object is first initialized and again every time |
| 58 | // its data changes. |
| 59 | virtual void OnDataChanged(); |
| 60 | |
| 61 | // Called after an atomic update to the tree finished and this object |
| 62 | // was created or changed in this update. |
| 63 | virtual void OnUpdateFinished() {} |
[email protected] | ee84512 | 2011-09-01 08:44:16 | [diff] [blame] | 64 | |
[email protected] | cd3e2d90 | 2012-05-09 07:05:20 | [diff] [blame] | 65 | // Returns true if this is a native platform-specific object, vs a |
| 66 | // cross-platform generic object. |
| 67 | virtual bool IsNative() const; |
| 68 | |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 69 | // Called when the location changed. |
dmazzoni | 487bac0 | 2014-08-27 20:54:11 | [diff] [blame] | 70 | virtual void OnLocationChanged() {} |
[email protected] | a10a5f8 | 2013-05-06 05:24:56 | [diff] [blame] | 71 | |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 72 | // Return true if this object is equal to or a descendant of |ancestor|. |
| 73 | bool IsDescendantOf(BrowserAccessibility* ancestor); |
| 74 | |
[email protected] | 933af8c | 2013-11-01 17:59:40 | [diff] [blame] | 75 | // Returns true if this is a leaf node on this platform, meaning any |
| 76 | // children should not be exposed to this platform's native accessibility |
| 77 | // layer. Each platform subclass should implement this itself. |
| 78 | // The definition of a leaf may vary depending on the platform, |
| 79 | // but a leaf node should never have children that are focusable or |
| 80 | // that might send notifications. |
| 81 | virtual bool PlatformIsLeaf() const; |
| 82 | |
| 83 | // Returns the number of children of this object, or 0 if PlatformIsLeaf() |
| 84 | // returns true. |
| 85 | uint32 PlatformChildCount() const; |
| 86 | |
| 87 | // Return a pointer to the child at the given index, or NULL for an |
| 88 | // invalid index. Returns NULL if PlatformIsLeaf() returns true. |
| 89 | BrowserAccessibility* PlatformGetChild(uint32 child_index) const; |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 90 | |
| 91 | // Return the previous sibling of this object, or NULL if it's the first |
| 92 | // child of its parent. |
| 93 | BrowserAccessibility* GetPreviousSibling(); |
| 94 | |
| 95 | // Return the next sibling of this object, or NULL if it's the last child |
| 96 | // of its parent. |
| 97 | BrowserAccessibility* GetNextSibling(); |
| 98 | |
[email protected] | 9052cca | 2011-11-30 23:59:31 | [diff] [blame] | 99 | // Returns the bounds of this object in coordinates relative to the |
| 100 | // top-left corner of the overall web area. |
[email protected] | 7f2d9f6b | 2013-06-13 22:57:01 | [diff] [blame] | 101 | gfx::Rect GetLocalBoundsRect() const; |
[email protected] | 02747d4e | 2010-11-03 19:10:00 | [diff] [blame] | 102 | |
[email protected] | 9052cca | 2011-11-30 23:59:31 | [diff] [blame] | 103 | // Returns the bounds of this object in screen coordinates. |
[email protected] | 7f2d9f6b | 2013-06-13 22:57:01 | [diff] [blame] | 104 | gfx::Rect GetGlobalBoundsRect() const; |
[email protected] | 9052cca | 2011-11-30 23:59:31 | [diff] [blame] | 105 | |
[email protected] | 516c16a | 2013-11-04 21:32:20 | [diff] [blame] | 106 | // Returns the bounds of the given range in coordinates relative to the |
| 107 | // top-left corner of the overall web area. Only valid when the |
| 108 | // role is WebAXRoleStaticText. |
| 109 | gfx::Rect GetLocalBoundsForRange(int start, int len) const; |
| 110 | |
| 111 | // Same as GetLocalBoundsForRange, in screen coordinates. Only valid when |
| 112 | // the role is WebAXRoleStaticText. |
| 113 | gfx::Rect GetGlobalBoundsForRange(int start, int len) const; |
| 114 | |
[email protected] | 9052cca | 2011-11-30 23:59:31 | [diff] [blame] | 115 | // Returns the deepest descendant that contains the specified point |
| 116 | // (in global screen coordinates). |
[email protected] | 02747d4e | 2010-11-03 19:10:00 | [diff] [blame] | 117 | BrowserAccessibility* BrowserAccessibilityForPoint(const gfx::Point& point); |
| 118 | |
[email protected] | c47754096 | 2013-03-07 00:43:10 | [diff] [blame] | 119 | // Marks this object for deletion, releases our reference to it, and |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 120 | // nulls out the pointer to the underlying AXNode. May not delete |
| 121 | // the object immediately due to reference counting. |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 122 | // |
[email protected] | c47754096 | 2013-03-07 00:43:10 | [diff] [blame] | 123 | // Reference counting is used on some platforms because the |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 124 | // operating system may hold onto a reference to a BrowserAccessibility |
[email protected] | c47754096 | 2013-03-07 00:43:10 | [diff] [blame] | 125 | // object even after we're through with it. When a BrowserAccessibility |
| 126 | // has had Destroy() called but its reference count is not yet zero, |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 127 | // instance_active() returns false and queries on this object return failure. |
[email protected] | c47754096 | 2013-03-07 00:43:10 | [diff] [blame] | 128 | virtual void Destroy(); |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 129 | |
| 130 | // Subclasses should override this to support platform reference counting. |
| 131 | virtual void NativeAddReference() { } |
| 132 | |
| 133 | // Subclasses should override this to support platform reference counting. |
[email protected] | 402da9f | 2011-03-08 19:45:41 | [diff] [blame] | 134 | virtual void NativeReleaseReference(); |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 135 | |
| 136 | // |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 137 | // Accessors |
[email protected] | 8368e3c | 2011-03-08 19:26:24 | [diff] [blame] | 138 | // |
| 139 | |
[email protected] | 0d7dad6 | 2010-10-19 21:18:50 | [diff] [blame] | 140 | BrowserAccessibilityManager* manager() const { return manager_; } |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 141 | bool instance_active() const { return node_ != NULL; } |
| 142 | ui::AXNode* node() const { return node_; } |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame] | 143 | const std::string& name() const { return name_; } |
[email protected] | 99d408f | 2013-12-04 07:19:43 | [diff] [blame] | 144 | const std::string& value() const { return value_; } |
[email protected] | 99d408f | 2013-12-04 07:19:43 | [diff] [blame] | 145 | void set_name(const std::string& name) { name_ = name; } |
| 146 | void set_value(const std::string& value) { value_ = value; } |
| 147 | |
[email protected] | c1f9be74 | 2014-04-10 13:15:46 | [diff] [blame] | 148 | // These access the internal accessibility tree, which doesn't necessarily |
| 149 | // reflect the accessibility tree that should be exposed on each platform. |
| 150 | // Use PlatformChildCount and PlatformGetChild to implement platform |
| 151 | // accessibility APIs. |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 152 | uint32 InternalChildCount() const; |
| 153 | BrowserAccessibility* InternalGetChild(uint32 child_index) const; |
[email protected] | c1f9be74 | 2014-04-10 13:15:46 | [diff] [blame] | 154 | |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 155 | BrowserAccessibility* GetParent() const; |
| 156 | int32 GetIndexInParent() const; |
[email protected] | c1f9be74 | 2014-04-10 13:15:46 | [diff] [blame] | 157 | |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 158 | int32 GetId() const; |
| 159 | const ui::AXNodeData& GetData() const; |
| 160 | gfx::Rect GetLocation() const; |
| 161 | int32 GetRole() const; |
| 162 | int32 GetState() const; |
| 163 | |
mohan.reddy | 0079fba | 2014-09-25 07:25:23 | [diff] [blame] | 164 | typedef base::StringPairs HtmlAttributes; |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 165 | const HtmlAttributes& GetHtmlAttributes() const; |
[email protected] | c1f9be74 | 2014-04-10 13:15:46 | [diff] [blame] | 166 | |
[email protected] | 95b3f544 | 2012-05-06 17:10:07 | [diff] [blame] | 167 | #if defined(OS_MACOSX) && __OBJC__ |
[email protected] | cd3e2d90 | 2012-05-09 07:05:20 | [diff] [blame] | 168 | BrowserAccessibilityCocoa* ToBrowserAccessibilityCocoa(); |
[email protected] | 1dbadbd | 2010-10-13 18:50:10 | [diff] [blame] | 169 | #elif defined(OS_WIN) |
[email protected] | cd3e2d90 | 2012-05-09 07:05:20 | [diff] [blame] | 170 | BrowserAccessibilityWin* ToBrowserAccessibilityWin(); |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 171 | #endif |
| 172 | |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame] | 173 | // Accessing accessibility attributes: |
| 174 | // |
| 175 | // There are dozens of possible attributes for an accessibility node, |
| 176 | // but only a few tend to apply to any one object, so we store them |
| 177 | // in sparse arrays of <attribute id, attribute value> pairs, organized |
| 178 | // by type (bool, int, float, string, int list). |
| 179 | // |
| 180 | // There are three accessors for each type of attribute: one that returns |
| 181 | // true if the attribute is present and false if not, one that takes a |
| 182 | // pointer argument and returns true if the attribute is present (if you |
| 183 | // need to distinguish between the default value and a missing attribute), |
| 184 | // and another that returns the default value for that type if the |
| 185 | // attribute is not present. In addition, strings can be returned as |
[email protected] | fcf75d4 | 2013-12-03 20:11:26 | [diff] [blame] | 186 | // either std::string or base::string16, for convenience. |
[email protected] | ee84512 | 2011-09-01 08:44:16 | [diff] [blame] | 187 | |
[email protected] | 5eec2f5 | 2014-01-06 22:30:54 | [diff] [blame] | 188 | bool HasBoolAttribute(ui::AXBoolAttribute attr) const; |
| 189 | bool GetBoolAttribute(ui::AXBoolAttribute attr) const; |
| 190 | bool GetBoolAttribute(ui::AXBoolAttribute attr, bool* value) const; |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame] | 191 | |
[email protected] | 5eec2f5 | 2014-01-06 22:30:54 | [diff] [blame] | 192 | bool HasFloatAttribute(ui::AXFloatAttribute attr) const; |
| 193 | float GetFloatAttribute(ui::AXFloatAttribute attr) const; |
| 194 | bool GetFloatAttribute(ui::AXFloatAttribute attr, float* value) const; |
[email protected] | 02747d4e | 2010-11-03 19:10:00 | [diff] [blame] | 195 | |
[email protected] | 5eec2f5 | 2014-01-06 22:30:54 | [diff] [blame] | 196 | bool HasIntAttribute(ui::AXIntAttribute attribute) const; |
| 197 | int GetIntAttribute(ui::AXIntAttribute attribute) const; |
| 198 | bool GetIntAttribute(ui::AXIntAttribute attribute, int* value) const; |
[email protected] | ee84512 | 2011-09-01 08:44:16 | [diff] [blame] | 199 | |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame] | 200 | bool HasStringAttribute( |
[email protected] | 5eec2f5 | 2014-01-06 22:30:54 | [diff] [blame] | 201 | ui::AXStringAttribute attribute) const; |
| 202 | const std::string& GetStringAttribute(ui::AXStringAttribute attribute) const; |
| 203 | bool GetStringAttribute(ui::AXStringAttribute attribute, |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame] | 204 | std::string* value) const; |
| 205 | |
[email protected] | 5eec2f5 | 2014-01-06 22:30:54 | [diff] [blame] | 206 | bool GetString16Attribute(ui::AXStringAttribute attribute, |
[email protected] | fcf75d4 | 2013-12-03 20:11:26 | [diff] [blame] | 207 | base::string16* value) const; |
| 208 | base::string16 GetString16Attribute( |
[email protected] | 5eec2f5 | 2014-01-06 22:30:54 | [diff] [blame] | 209 | ui::AXStringAttribute attribute) const; |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame] | 210 | |
[email protected] | 5eec2f5 | 2014-01-06 22:30:54 | [diff] [blame] | 211 | bool HasIntListAttribute(ui::AXIntListAttribute attribute) const; |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame] | 212 | const std::vector<int32>& GetIntListAttribute( |
[email protected] | 5eec2f5 | 2014-01-06 22:30:54 | [diff] [blame] | 213 | ui::AXIntListAttribute attribute) const; |
| 214 | bool GetIntListAttribute(ui::AXIntListAttribute attribute, |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame] | 215 | std::vector<int32>* value) const; |
| 216 | |
[email protected] | 5eec2f5 | 2014-01-06 22:30:54 | [diff] [blame] | 217 | void SetStringAttribute(ui::AXStringAttribute attribute, |
| 218 | const std::string& value); |
[email protected] | ee84512 | 2011-09-01 08:44:16 | [diff] [blame] | 219 | |
| 220 | // Retrieve the value of a html attribute from the attribute map and |
| 221 | // returns true if found. |
[email protected] | fcf75d4 | 2013-12-03 20:11:26 | [diff] [blame] | 222 | bool GetHtmlAttribute(const char* attr, base::string16* value) const; |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame] | 223 | bool GetHtmlAttribute(const char* attr, std::string* value) const; |
[email protected] | ee84512 | 2011-09-01 08:44:16 | [diff] [blame] | 224 | |
[email protected] | 38f1e3b05 | 2012-02-10 21:46:07 | [diff] [blame] | 225 | // Utility method to handle special cases for ARIA booleans, tristates and |
| 226 | // booleans which have a "mixed" state. |
| 227 | // |
| 228 | // Warning: the term "Tristate" is used loosely by the spec and here, |
| 229 | // as some attributes support a 4th state. |
| 230 | // |
| 231 | // The following attributes are appropriate to use with this method: |
| 232 | // aria-selected (selectable) |
| 233 | // aria-grabbed (grabbable) |
| 234 | // aria-expanded (expandable) |
| 235 | // aria-pressed (toggleable/pressable) -- supports 4th "mixed" state |
| 236 | // aria-checked (checkable) -- supports 4th "mixed state" |
| 237 | bool GetAriaTristate(const char* attr_name, |
| 238 | bool* is_defined, |
| 239 | bool* is_mixed) const; |
| 240 | |
[email protected] | c43b0dc | 2011-12-03 04:31:13 | [diff] [blame] | 241 | // Returns true if the bit corresponding to the given state enum is 1. |
[email protected] | 5eec2f5 | 2014-01-06 22:30:54 | [diff] [blame] | 242 | bool HasState(ui::AXState state_enum) const; |
[email protected] | c43b0dc | 2011-12-03 04:31:13 | [diff] [blame] | 243 | |
je_julie.kim | ff9c8d3 | 2015-01-12 11:14:46 | [diff] [blame^] | 244 | // Returns true if this node is an cell or an table header. |
| 245 | bool IsCellOrTableHeaderRole() const; |
| 246 | |
[email protected] | ee84512 | 2011-09-01 08:44:16 | [diff] [blame] | 247 | // Returns true if this node is an editable text field of any kind. |
| 248 | bool IsEditableText() const; |
[email protected] | 02747d4e | 2010-11-03 19:10:00 | [diff] [blame] | 249 | |
dmazzoni | 8b43c60 | 2014-12-17 21:23:35 | [diff] [blame] | 250 | // True if this is a web area, and its grandparent is a presentational iframe. |
| 251 | bool IsWebAreaForPresentationalIframe() const; |
| 252 | |
[email protected] | d1029c5 | 2011-10-21 21:59:51 | [diff] [blame] | 253 | // Append the text from this node and its children. |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame] | 254 | std::string GetTextRecursive() const; |
[email protected] | d1029c5 | 2011-10-21 21:59:51 | [diff] [blame] | 255 | |
[email protected] | aa50cea8 | 2010-11-05 23:02:38 | [diff] [blame] | 256 | protected: |
| 257 | BrowserAccessibility(); |
| 258 | |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 259 | // The manager of this tree of accessibility objects. |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 260 | BrowserAccessibilityManager* manager_; |
| 261 | |
[email protected] | d96f384 | 2014-04-21 18:07:29 | [diff] [blame] | 262 | // The underlying node. |
| 263 | ui::AXNode* node_; |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 264 | |
[email protected] | 99d408f | 2013-12-04 07:19:43 | [diff] [blame] | 265 | private: |
[email protected] | 3dba3ed | 2013-12-17 21:24:01 | [diff] [blame] | 266 | // Return the sum of the lengths of all static text descendants, |
| 267 | // including this object if it's static text. |
| 268 | int GetStaticTextLenRecursive() const; |
| 269 | |
[email protected] | eecf89f0 | 2013-08-20 23:41:51 | [diff] [blame] | 270 | std::string name_; |
| 271 | std::string value_; |
[email protected] | f27e81c | 2010-10-07 05:20:23 | [diff] [blame] | 272 | |
[email protected] | c5c2a67 | 2010-10-01 23:28:04 | [diff] [blame] | 273 | DISALLOW_COPY_AND_ASSIGN(BrowserAccessibility); |
| 274 | }; |
| 275 | |
[email protected] | e6b3487 | 2012-10-24 20:51:32 | [diff] [blame] | 276 | } // namespace content |
| 277 | |
[email protected] | ba1fa65 | 2011-06-25 05:16:22 | [diff] [blame] | 278 | #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_H_ |