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

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

Issue 2836813002: Move ScrollbarManager from core to platform and use as Scrollbar parent (Closed)
Patch Set: Created 3 years, 7 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
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 14 matching lines...) Expand all
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/BUILD.gn ('k') | third_party/WebKit/Source/platform/scroll/Scrollbar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698