| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2011 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008, 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 #include "platform/PlatformExport.h" | 29 #include "platform/PlatformExport.h" |
| 30 #include "platform/RuntimeEnabledFeatures.h" | 30 #include "platform/RuntimeEnabledFeatures.h" |
| 31 #include "platform/geometry/FloatQuad.h" | 31 #include "platform/geometry/FloatQuad.h" |
| 32 #include "platform/geometry/LayoutRect.h" | 32 #include "platform/geometry/LayoutRect.h" |
| 33 #include "platform/graphics/Color.h" | 33 #include "platform/graphics/Color.h" |
| 34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 35 #include "platform/scroll/ScrollAnimatorBase.h" | 35 #include "platform/scroll/ScrollAnimatorBase.h" |
| 36 #include "platform/scroll/ScrollTypes.h" | 36 #include "platform/scroll/ScrollTypes.h" |
| 37 #include "platform/scroll/Scrollbar.h" | 37 #include "platform/scroll/Scrollbar.h" |
| 38 #include "platform/wtf/MathExtras.h" |
| 39 #include "platform/wtf/Noncopyable.h" |
| 40 #include "platform/wtf/Vector.h" |
| 38 #include "public/platform/WebLayerScrollClient.h" | 41 #include "public/platform/WebLayerScrollClient.h" |
| 39 #include "wtf/MathExtras.h" | |
| 40 #include "wtf/Noncopyable.h" | |
| 41 #include "wtf/Vector.h" | |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class CompositorAnimationHost; | 45 class CompositorAnimationHost; |
| 46 class CompositorAnimationTimeline; | 46 class CompositorAnimationTimeline; |
| 47 class GraphicsLayer; | 47 class GraphicsLayer; |
| 48 class HostWindow; | 48 class HostWindow; |
| 49 class LayoutBox; | 49 class LayoutBox; |
| 50 class LayoutObject; | 50 class LayoutObject; |
| 51 class PaintLayer; | 51 class PaintLayer; |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 // vertical-lr / ltr NO NO | 461 // vertical-lr / ltr NO NO |
| 462 // vertical-lr / rtl NO YES | 462 // vertical-lr / rtl NO YES |
| 463 // vertical-rl / ltr YES NO | 463 // vertical-rl / ltr YES NO |
| 464 // vertical-rl / rtl YES YES | 464 // vertical-rl / rtl YES YES |
| 465 IntPoint m_scrollOrigin; | 465 IntPoint m_scrollOrigin; |
| 466 }; | 466 }; |
| 467 | 467 |
| 468 } // namespace blink | 468 } // namespace blink |
| 469 | 469 |
| 470 #endif // ScrollableArea_h | 470 #endif // ScrollableArea_h |
| OLD | NEW |