| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 Copyright (C) 1997 Martin Jones (mjones@kde.org) |
| 3 (C) 1998 Waldo Bastian (bastian@kde.org) | 3 (C) 1998 Waldo Bastian (bastian@kde.org) |
| 4 (C) 1998, 1999 Torben Weis (weis@kde.org) | 4 (C) 1998, 1999 Torben Weis (weis@kde.org) |
| 5 (C) 1999 Lars Knoll (knoll@kde.org) | 5 (C) 1999 Lars Knoll (knoll@kde.org) |
| 6 (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights | 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights |
| 8 reserved. | 8 reserved. |
| 9 | 9 |
| 10 This library is free software; you can redistribute it and/or | 10 This library is free software; you can redistribute it and/or |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 class PaintController; | 89 class PaintController; |
| 90 class PaintInvalidationState; | 90 class PaintInvalidationState; |
| 91 class Page; | 91 class Page; |
| 92 class PrintContext; | 92 class PrintContext; |
| 93 class ScrollingCoordinator; | 93 class ScrollingCoordinator; |
| 94 class TracedValue; | 94 class TracedValue; |
| 95 class TransformState; | 95 class TransformState; |
| 96 struct AnnotatedRegionValue; | 96 struct AnnotatedRegionValue; |
| 97 struct CompositedSelection; | 97 struct CompositedSelection; |
| 98 | 98 |
| 99 CORE_EXPORT int* frameCounts(); |
| 100 |
| 99 typedef unsigned long long DOMTimeStamp; | 101 typedef unsigned long long DOMTimeStamp; |
| 100 | 102 |
| 101 class CORE_EXPORT FrameView final | 103 class CORE_EXPORT FrameView final |
| 102 : public FrameViewBase, | 104 : public FrameViewBase, |
| 103 public PaintInvalidationCapableScrollableArea { | 105 public PaintInvalidationCapableScrollableArea { |
| 104 USING_GARBAGE_COLLECTED_MIXIN(FrameView); | 106 USING_GARBAGE_COLLECTED_MIXIN(FrameView); |
| 105 | 107 |
| 106 friend class PaintControllerPaintTestBase; | 108 friend class PaintControllerPaintTestBase; |
| 107 friend class Internals; | 109 friend class Internals; |
| 108 friend class LayoutPart; // for invalidateTreeIfNeeded | 110 friend class LayoutPart; // for invalidateTreeIfNeeded |
| (...skipping 1157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1266 frameViewBase.isFrameView()); | 1268 frameViewBase.isFrameView()); |
| 1267 DEFINE_TYPE_CASTS(FrameView, | 1269 DEFINE_TYPE_CASTS(FrameView, |
| 1268 ScrollableArea, | 1270 ScrollableArea, |
| 1269 scrollableArea, | 1271 scrollableArea, |
| 1270 scrollableArea->isFrameView(), | 1272 scrollableArea->isFrameView(), |
| 1271 scrollableArea.isFrameView()); | 1273 scrollableArea.isFrameView()); |
| 1272 | 1274 |
| 1273 } // namespace blink | 1275 } // namespace blink |
| 1274 | 1276 |
| 1275 #endif // FrameView_h | 1277 #endif // FrameView_h |
| OLD | NEW |