| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014, Google Inc. All rights reserved. | 2 * Copyright (C) 2014, Google 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 Settings* settings(); | 242 Settings* settings(); |
| 243 }; | 243 }; |
| 244 | 244 |
| 245 // This is the only subclass of AXObjectCache. | 245 // This is the only subclass of AXObjectCache. |
| 246 DEFINE_TYPE_CASTS(AXObjectCacheImpl, AXObjectCache, cache, true, true); | 246 DEFINE_TYPE_CASTS(AXObjectCacheImpl, AXObjectCache, cache, true, true); |
| 247 | 247 |
| 248 bool nodeHasRole(Node*, const String& role); | 248 bool nodeHasRole(Node*, const String& role); |
| 249 // This will let you know if aria-hidden was explicitly set to false. | 249 // This will let you know if aria-hidden was explicitly set to false. |
| 250 bool isNodeAriaVisible(Node*); | 250 bool isNodeAriaVisible(Node*); |
| 251 | 251 |
| 252 } | 252 } // namespace blink |
| 253 | 253 |
| 254 #endif | 254 #endif |
| OLD | NEW |