OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> | 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> |
3 * 1999 Lars Knoll <knoll@kde.org> | 3 * 1999 Lars Knoll <knoll@kde.org> |
4 * 1999 Antti Koivisto <koivisto@kde.org> | 4 * 1999 Antti Koivisto <koivisto@kde.org> |
5 * 2000 Dirk Mueller <mueller@kde.org> | 5 * 2000 Dirk Mueller <mueller@kde.org> |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
9 * Copyright (C) 2009 Google Inc. All rights reserved. | 9 * Copyright (C) 2009 Google Inc. All rights reserved. |
10 * | 10 * |
11 * This library is free software; you can redistribute it and/or | 11 * This library is free software; you can redistribute it and/or |
12 * modify it under the terms of the GNU Library General Public | 12 * modify it under the terms of the GNU Library General Public |
13 * License as published by the Free Software Foundation; either | 13 * License as published by the Free Software Foundation; either |
14 * version 2 of the License, or (at your option) any later version. | 14 * version 2 of the License, or (at your option) any later version. |
15 * | 15 * |
16 * This library is distributed in the hope that it will be useful, | 16 * This library is distributed in the hope that it will be useful, |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
19 * Library General Public License for more details. | 19 * Library General Public License for more details. |
20 * | 20 * |
21 * You should have received a copy of the GNU Library General Public License | 21 * You should have received a copy of the GNU Library General Public License |
22 * along with this library; see the file COPYING.LIB. If not, write to | 22 * along with this library; see the file COPYING.LIB. If not, write to |
23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 * Boston, MA 02110-1301, USA. | 24 * Boston, MA 02110-1301, USA. |
25 */ | 25 */ |
26 | 26 |
27 #include "config.h" | 27 #include "config.h" |
28 #include "core/page/FrameView.h" | 28 #include "core/page/FrameView.h" |
29 | 29 |
30 #include "DocumentMarkerController.h" | |
31 #include "HTMLDocument.h" | 30 #include "HTMLDocument.h" |
32 #include "HTMLFrameElement.h" | 31 #include "HTMLFrameElement.h" |
33 #include "HTMLFrameSetElement.h" | 32 #include "HTMLFrameSetElement.h" |
34 #include "HTMLNames.h" | 33 #include "HTMLNames.h" |
35 #include "HTMLPlugInImageElement.h" | 34 #include "HTMLPlugInImageElement.h" |
36 #include "InspectorClient.h" | 35 #include "InspectorClient.h" |
37 #include "InspectorController.h" | 36 #include "InspectorController.h" |
38 #include "InspectorInstrumentation.h" | 37 #include "InspectorInstrumentation.h" |
39 #include "OverflowEvent.h" | |
40 #include "core/accessibility/AXObjectCache.h" | 38 #include "core/accessibility/AXObjectCache.h" |
41 #include "core/css/FontLoader.h" | 39 #include "core/css/FontLoader.h" |
42 #include "core/css/StyleResolver.h" | 40 #include "core/css/StyleResolver.h" |
| 41 #include "core/dom/DocumentMarkerController.h" |
| 42 #include "core/dom/OverflowEvent.h" |
43 #include "core/editing/FrameSelection.h" | 43 #include "core/editing/FrameSelection.h" |
44 #include "core/history/BackForwardController.h" | 44 #include "core/history/BackForwardController.h" |
45 #include "core/loader/FrameLoader.h" | 45 #include "core/loader/FrameLoader.h" |
46 #include "core/loader/FrameLoaderClient.h" | 46 #include "core/loader/FrameLoaderClient.h" |
47 #include "core/loader/TextResourceDecoder.h" | 47 #include "core/loader/TextResourceDecoder.h" |
48 #include "core/loader/cache/CachedResourceLoader.h" | 48 #include "core/loader/cache/CachedResourceLoader.h" |
49 #include "core/page/Chrome.h" | 49 #include "core/page/Chrome.h" |
50 #include "core/page/ChromeClient.h" | 50 #include "core/page/ChromeClient.h" |
51 #include "core/page/EventHandler.h" | 51 #include "core/page/EventHandler.h" |
52 #include "core/page/FocusController.h" | 52 #include "core/page/FocusController.h" |
(...skipping 3500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3553 } | 3553 } |
3554 | 3554 |
3555 AXObjectCache* FrameView::axObjectCache() const | 3555 AXObjectCache* FrameView::axObjectCache() const |
3556 { | 3556 { |
3557 if (frame() && frame()->document()) | 3557 if (frame() && frame()->document()) |
3558 return frame()->document()->existingAXObjectCache(); | 3558 return frame()->document()->existingAXObjectCache(); |
3559 return 0; | 3559 return 0; |
3560 } | 3560 } |
3561 | 3561 |
3562 } // namespace WebCore | 3562 } // namespace WebCore |
OLD | NEW |