| 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 "sky/engine/platform/PlatformExport.h" | 29 #include "sky/engine/platform/PlatformExport.h" |
| 30 #include "sky/engine/platform/scroll/ScrollAnimator.h" | 30 #include "sky/engine/platform/scroll/ScrollAnimator.h" |
| 31 #include "sky/engine/platform/scroll/Scrollbar.h" | 31 #include "sky/engine/platform/scroll/Scrollbar.h" |
| 32 #include "sky/engine/wtf/Noncopyable.h" | 32 #include "sky/engine/wtf/Noncopyable.h" |
| 33 #include "sky/engine/wtf/Vector.h" | 33 #include "sky/engine/wtf/Vector.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 class FloatPoint; | 37 class FloatPoint; |
| 38 class GraphicsLayer; | |
| 39 class HostWindow; | 38 class HostWindow; |
| 40 class PlatformWheelEvent; | 39 class PlatformWheelEvent; |
| 41 class ScrollAnimator; | 40 class ScrollAnimator; |
| 42 | 41 |
| 43 enum ScrollBehavior { | 42 enum ScrollBehavior { |
| 44 ScrollBehaviorAuto, | 43 ScrollBehaviorAuto, |
| 45 ScrollBehaviorInstant, | 44 ScrollBehaviorInstant, |
| 46 ScrollBehaviorSmooth, | 45 ScrollBehaviorSmooth, |
| 47 }; | 46 }; |
| 48 | 47 |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 // vertical-lr / ltr NO NO | 236 // vertical-lr / ltr NO NO |
| 238 // vertical-lr / rtl NO YES | 237 // vertical-lr / rtl NO YES |
| 239 // vertical-rl / ltr YES NO | 238 // vertical-rl / ltr YES NO |
| 240 // vertical-rl / rtl YES YES | 239 // vertical-rl / rtl YES YES |
| 241 IntPoint m_scrollOrigin; | 240 IntPoint m_scrollOrigin; |
| 242 }; | 241 }; |
| 243 | 242 |
| 244 } // namespace blink | 243 } // namespace blink |
| 245 | 244 |
| 246 #endif // SKY_ENGINE_PLATFORM_SCROLL_SCROLLABLEAREA_H_ | 245 #endif // SKY_ENGINE_PLATFORM_SCROLL_SCROLLABLEAREA_H_ |
| OLD | NEW |