| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include "platform/RuntimeEnabledFeatures.h" | 44 #include "platform/RuntimeEnabledFeatures.h" |
| 45 #include "platform/animation/CompositorAnimationHost.h" | 45 #include "platform/animation/CompositorAnimationHost.h" |
| 46 #include "platform/animation/CompositorAnimationTimeline.h" | 46 #include "platform/animation/CompositorAnimationTimeline.h" |
| 47 #include "platform/geometry/IntRect.h" | 47 #include "platform/geometry/IntRect.h" |
| 48 #include "platform/geometry/LayoutRect.h" | 48 #include "platform/geometry/LayoutRect.h" |
| 49 #include "platform/graphics/Color.h" | 49 #include "platform/graphics/Color.h" |
| 50 #include "platform/graphics/CompositorElementId.h" | 50 #include "platform/graphics/CompositorElementId.h" |
| 51 #include "platform/graphics/GraphicsLayerClient.h" | 51 #include "platform/graphics/GraphicsLayerClient.h" |
| 52 #include "platform/scroll/ScrollTypes.h" | 52 #include "platform/scroll/ScrollTypes.h" |
| 53 #include "platform/scroll/Scrollbar.h" | 53 #include "platform/scroll/Scrollbar.h" |
| 54 #include "platform/wtf/Allocator.h" |
| 55 #include "platform/wtf/AutoReset.h" |
| 56 #include "platform/wtf/Forward.h" |
| 57 #include "platform/wtf/HashSet.h" |
| 58 #include "platform/wtf/ListHashSet.h" |
| 59 #include "platform/wtf/text/WTFString.h" |
| 54 #include "public/platform/ShapeProperties.h" | 60 #include "public/platform/ShapeProperties.h" |
| 55 #include "public/platform/WebDisplayMode.h" | 61 #include "public/platform/WebDisplayMode.h" |
| 56 #include "public/platform/WebRect.h" | 62 #include "public/platform/WebRect.h" |
| 57 #include "wtf/Allocator.h" | |
| 58 #include "wtf/AutoReset.h" | |
| 59 #include "wtf/Forward.h" | |
| 60 #include "wtf/HashSet.h" | |
| 61 #include "wtf/ListHashSet.h" | |
| 62 #include "wtf/text/WTFString.h" | |
| 63 | 63 |
| 64 namespace blink { | 64 namespace blink { |
| 65 | 65 |
| 66 class AXObjectCache; | 66 class AXObjectCache; |
| 67 class ComputedStyle; | 67 class ComputedStyle; |
| 68 class Cursor; | 68 class Cursor; |
| 69 class DocumentLifecycle; | 69 class DocumentLifecycle; |
| 70 class Element; | 70 class Element; |
| 71 class ElementVisibilityObserver; | 71 class ElementVisibilityObserver; |
| 72 class Frame; | 72 class Frame; |
| (...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1259 frameViewBase.IsFrameView()); | 1259 frameViewBase.IsFrameView()); |
| 1260 DEFINE_TYPE_CASTS(FrameView, | 1260 DEFINE_TYPE_CASTS(FrameView, |
| 1261 ScrollableArea, | 1261 ScrollableArea, |
| 1262 scrollableArea, | 1262 scrollableArea, |
| 1263 scrollableArea->IsFrameView(), | 1263 scrollableArea->IsFrameView(), |
| 1264 scrollableArea.IsFrameView()); | 1264 scrollableArea.IsFrameView()); |
| 1265 | 1265 |
| 1266 } // namespace blink | 1266 } // namespace blink |
| 1267 | 1267 |
| 1268 #endif // FrameView_h | 1268 #endif // FrameView_h |
| OLD | NEW |