| 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 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #ifndef ScrollableArea_h | 26 #ifndef ScrollableArea_h |
| 27 #define ScrollableArea_h | 27 #define ScrollableArea_h |
| 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" | |
| 36 #include "platform/scroll/ScrollTypes.h" | 35 #include "platform/scroll/ScrollTypes.h" |
| 37 #include "platform/scroll/Scrollbar.h" | 36 #include "platform/scroll/Scrollbar.h" |
| 38 #include "platform/wtf/MathExtras.h" | 37 #include "platform/wtf/MathExtras.h" |
| 39 #include "platform/wtf/Noncopyable.h" | 38 #include "platform/wtf/Noncopyable.h" |
| 40 #include "platform/wtf/Vector.h" | 39 #include "platform/wtf/Vector.h" |
| 41 #include "public/platform/WebLayerScrollClient.h" | 40 #include "public/platform/WebLayerScrollClient.h" |
| 42 | 41 |
| 43 namespace blink { | 42 namespace blink { |
| 44 | 43 |
| 45 class CompositorAnimationHost; | 44 class CompositorAnimationHost; |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 // vertical-lr / ltr NO NO | 449 // vertical-lr / ltr NO NO |
| 451 // vertical-lr / rtl NO YES | 450 // vertical-lr / rtl NO YES |
| 452 // vertical-rl / ltr YES NO | 451 // vertical-rl / ltr YES NO |
| 453 // vertical-rl / rtl YES YES | 452 // vertical-rl / rtl YES YES |
| 454 IntPoint scroll_origin_; | 453 IntPoint scroll_origin_; |
| 455 }; | 454 }; |
| 456 | 455 |
| 457 } // namespace blink | 456 } // namespace blink |
| 458 | 457 |
| 459 #endif // ScrollableArea_h | 458 #endif // ScrollableArea_h |
| OLD | NEW |