| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 class HTMLOptionElement; | 39 class HTMLOptionElement; |
| 40 class HTMLSelectElement; | 40 class HTMLSelectElement; |
| 41 class LayoutMenuList; | 41 class LayoutMenuList; |
| 42 class Page; | 42 class Page; |
| 43 | 43 |
| 44 class CORE_EXPORT AXObjectCache : public GarbageCollectedFinalized<AXObjectCache
> { | 44 class CORE_EXPORT AXObjectCache : public GarbageCollectedFinalized<AXObjectCache
> { |
| 45 WTF_MAKE_NONCOPYABLE(AXObjectCache); | 45 WTF_MAKE_NONCOPYABLE(AXObjectCache); |
| 46 public: | 46 public: |
| 47 static AXObjectCache* create(Document&); | 47 static AXObjectCache* create(Document&); |
| 48 | 48 |
| 49 static AXObject* focusedUIElementForPage(const Page*); | 49 static AXObject* focusedObject(); |
| 50 | 50 |
| 51 virtual ~AXObjectCache(); | 51 virtual ~AXObjectCache(); |
| 52 DEFINE_INLINE_VIRTUAL_TRACE() { } | 52 DEFINE_INLINE_VIRTUAL_TRACE() { } |
| 53 | 53 |
| 54 enum AXNotification { | 54 enum AXNotification { |
| 55 AXActiveDescendantChanged, | 55 AXActiveDescendantChanged, |
| 56 AXAlert, | 56 AXAlert, |
| 57 AXAriaAttributeChanged, | 57 AXAriaAttributeChanged, |
| 58 AXAutocorrectionOccured, | 58 AXAutocorrectionOccured, |
| 59 AXBlur, | 59 AXBlur, |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 private: | 158 private: |
| 159 explicit ScopedAXObjectCache(Document&); | 159 explicit ScopedAXObjectCache(Document&); |
| 160 | 160 |
| 161 RefPtrWillBePersistent<Document> m_document; | 161 RefPtrWillBePersistent<Document> m_document; |
| 162 Persistent<AXObjectCache> m_cache; | 162 Persistent<AXObjectCache> m_cache; |
| 163 }; | 163 }; |
| 164 | 164 |
| 165 } // namespace blink | 165 } // namespace blink |
| 166 | 166 |
| 167 #endif | 167 #endif |
| OLD | NEW |