| 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 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #ifndef AXObjectCache_h | 26 #ifndef AXObjectCache_h |
| 27 #define AXObjectCache_h | 27 #define AXObjectCache_h |
| 28 | 28 |
| 29 #include "core/dom/Document.h" | 29 #include "core/dom/Document.h" |
| 30 | 30 |
| 31 typedef unsigned AXID; | 31 typedef unsigned AXID; |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| 34 class AXObject; | 34 class AXObject; |
| 35 class AbstractInlineTextBox; | |
| 36 class FrameView; | 35 class FrameView; |
| 37 class Page; | 36 class Page; |
| 38 class RenderMenuList; | 37 class RenderMenuList; |
| 39 class Widget; | 38 class Widget; |
| 40 | 39 |
| 41 class AXObjectCache { | 40 class AXObjectCache { |
| 42 WTF_MAKE_NONCOPYABLE(AXObjectCache); WTF_MAKE_FAST_ALLOCATED; | 41 WTF_MAKE_NONCOPYABLE(AXObjectCache); WTF_MAKE_FAST_ALLOCATED; |
| 43 public: | 42 public: |
| 44 static AXObjectCache* create(Document&); | 43 static AXObjectCache* create(Document&); |
| 45 | 44 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 virtual void handleLayoutComplete(RenderObject*) = 0; | 119 virtual void handleLayoutComplete(RenderObject*) = 0; |
| 121 virtual void handleScrolledToAnchor(const Node* anchorNode) = 0; | 120 virtual void handleScrolledToAnchor(const Node* anchorNode) = 0; |
| 122 | 121 |
| 123 protected: | 122 protected: |
| 124 AXObjectCache(); | 123 AXObjectCache(); |
| 125 }; | 124 }; |
| 126 | 125 |
| 127 } | 126 } |
| 128 | 127 |
| 129 #endif | 128 #endif |
| OLD | NEW |