| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights | 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights |
| 3 * reserved. | 3 * reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 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 20 matching lines...) Expand all Loading... |
| 31 #include "core/dom/Document.h" | 31 #include "core/dom/Document.h" |
| 32 #include <memory> | 32 #include <memory> |
| 33 | 33 |
| 34 typedef unsigned AXID; | 34 typedef unsigned AXID; |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 class AbstractInlineTextBox; | 38 class AbstractInlineTextBox; |
| 39 class AXObject; | 39 class AXObject; |
| 40 class FrameView; | 40 class FrameView; |
| 41 class HTMLCanvasElement; |
| 41 class HTMLOptionElement; | 42 class HTMLOptionElement; |
| 42 class HTMLSelectElement; | 43 class HTMLSelectElement; |
| 43 class LayoutMenuList; | 44 class LayoutMenuList; |
| 44 class LineLayoutItem; | 45 class LineLayoutItem; |
| 45 class Page; | 46 class Page; |
| 46 | 47 |
| 47 class CORE_EXPORT AXObjectCache | 48 class CORE_EXPORT AXObjectCache |
| 48 : public GarbageCollectedFinalized<AXObjectCache> { | 49 : public GarbageCollectedFinalized<AXObjectCache> { |
| 49 WTF_MAKE_NONCOPYABLE(AXObjectCache); | 50 WTF_MAKE_NONCOPYABLE(AXObjectCache); |
| 50 | 51 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 private: | 175 private: |
| 175 explicit ScopedAXObjectCache(Document&); | 176 explicit ScopedAXObjectCache(Document&); |
| 176 | 177 |
| 177 Persistent<Document> m_document; | 178 Persistent<Document> m_document; |
| 178 Persistent<AXObjectCache> m_cache; | 179 Persistent<AXObjectCache> m_cache; |
| 179 }; | 180 }; |
| 180 | 181 |
| 181 } // namespace blink | 182 } // namespace blink |
| 182 | 183 |
| 183 #endif | 184 #endif |
| OLD | NEW |