| 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/scroll/ScrollAnimator.h" | 30 #include "platform/scroll/ScrollAnimator.h" |
| 31 #include "platform/scroll/Scrollbar.h" | 31 #include "platform/scroll/Scrollbar.h" |
| 32 #include "wtf/Noncopyable.h" | 32 #include "wtf/Noncopyable.h" |
| 33 #include "wtf/Vector.h" | 33 #include "wtf/Vector.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 class FloatPoint; | 37 class FloatPoint; |
| 38 class GraphicsContext; | |
| 39 class GraphicsLayer; | 38 class GraphicsLayer; |
| 40 class HostWindow; | 39 class HostWindow; |
| 41 class PlatformGestureEvent; | |
| 42 class PlatformWheelEvent; | 40 class PlatformWheelEvent; |
| 43 class ProgrammaticScrollAnimator; | 41 class ProgrammaticScrollAnimator; |
| 44 class ScrollAnimator; | 42 class ScrollAnimator; |
| 45 | 43 |
| 46 enum ScrollBehavior { | 44 enum ScrollBehavior { |
| 47 ScrollBehaviorAuto, | 45 ScrollBehaviorAuto, |
| 48 ScrollBehaviorInstant, | 46 ScrollBehaviorInstant, |
| 49 ScrollBehaviorSmooth, | 47 ScrollBehaviorSmooth, |
| 50 }; | 48 }; |
| 51 | 49 |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 // vertical-lr / ltr NO NO | 294 // vertical-lr / ltr NO NO |
| 297 // vertical-lr / rtl NO YES | 295 // vertical-lr / rtl NO YES |
| 298 // vertical-rl / ltr YES NO | 296 // vertical-rl / ltr YES NO |
| 299 // vertical-rl / rtl YES YES | 297 // vertical-rl / rtl YES YES |
| 300 IntPoint m_scrollOrigin; | 298 IntPoint m_scrollOrigin; |
| 301 }; | 299 }; |
| 302 | 300 |
| 303 } // namespace blink | 301 } // namespace blink |
| 304 | 302 |
| 305 #endif // ScrollableArea_h | 303 #endif // ScrollableArea_h |
| OLD | NEW |