| 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 * |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 #include <wtf/CurrentTime.h> | 79 #include <wtf/CurrentTime.h> |
| 80 #include <wtf/TemporaryChange.h> | 80 #include <wtf/TemporaryChange.h> |
| 81 #include <wtf/UnusedParam.h> | 81 #include <wtf/UnusedParam.h> |
| 82 | 82 |
| 83 #if ENABLE(SVG) | 83 #if ENABLE(SVG) |
| 84 #include "RenderSVGRoot.h" | 84 #include "RenderSVGRoot.h" |
| 85 #include "SVGDocument.h" | 85 #include "SVGDocument.h" |
| 86 #include "SVGSVGElement.h" | 86 #include "SVGSVGElement.h" |
| 87 #endif | 87 #endif |
| 88 | 88 |
| 89 #include "TraceEvent.h" | 89 #include "core/platform/chromium/TraceEvent.h" |
| 90 | 90 |
| 91 namespace WebCore { | 91 namespace WebCore { |
| 92 | 92 |
| 93 using namespace HTMLNames; | 93 using namespace HTMLNames; |
| 94 | 94 |
| 95 double FrameView::sCurrentPaintTimeStamp = 0.0; | 95 double FrameView::sCurrentPaintTimeStamp = 0.0; |
| 96 | 96 |
| 97 | 97 |
| 98 // REPAINT_THROTTLING now chooses default values for throttling parameters. | 98 // REPAINT_THROTTLING now chooses default values for throttling parameters. |
| 99 // Should be removed when applications start using runtime configuration. | 99 // Should be removed when applications start using runtime configuration. |
| (...skipping 3445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3545 } | 3545 } |
| 3546 | 3546 |
| 3547 AXObjectCache* FrameView::axObjectCache() const | 3547 AXObjectCache* FrameView::axObjectCache() const |
| 3548 { | 3548 { |
| 3549 if (frame() && frame()->document()) | 3549 if (frame() && frame()->document()) |
| 3550 return frame()->document()->existingAXObjectCache(); | 3550 return frame()->document()->existingAXObjectCache(); |
| 3551 return 0; | 3551 return 0; |
| 3552 } | 3552 } |
| 3553 | 3553 |
| 3554 } // namespace WebCore | 3554 } // namespace WebCore |
| OLD | NEW |