Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(746)

Side by Side Diff: Source/platform/scroll/ScrollableArea.h

Issue 531983002: Clean up forward declarations in Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/platform/scroll/ScrollAnimatorNone.h ('k') | Source/platform/scroll/ScrollbarTheme.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/platform/scroll/ScrollAnimatorNone.h ('k') | Source/platform/scroll/ScrollbarTheme.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698