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

Side by Side Diff: sky/engine/platform/scroll/ScrollableArea.h

Issue 762993003: Remove GraphicsLayer family of classes. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 17 matching lines...) Expand all
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698