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

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

Issue 400543004: Rename WebCore namespace to blink in Platform (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/platform/scroll/ScrollView.cpp ('k') | Source/platform/scroll/ScrollableArea.cpp » ('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 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/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 WebCore { 35 namespace blink {
36 36
37 class FloatPoint; 37 class FloatPoint;
38 class GraphicsContext; 38 class GraphicsContext;
39 class GraphicsLayer; 39 class GraphicsLayer;
40 class PlatformGestureEvent; 40 class PlatformGestureEvent;
41 class PlatformWheelEvent; 41 class PlatformWheelEvent;
42 class ScrollAnimator; 42 class ScrollAnimator;
43 43
44 enum ScrollBehavior { 44 enum ScrollBehavior {
45 ScrollBehaviorAuto, 45 ScrollBehaviorAuto,
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 // horizontal-tb / rtl YES NO 276 // horizontal-tb / rtl YES NO
277 // horizontal-bt / ltr NO YES 277 // horizontal-bt / ltr NO YES
278 // horizontal-bt / rtl YES YES 278 // horizontal-bt / rtl YES YES
279 // vertical-lr / ltr NO NO 279 // vertical-lr / ltr NO NO
280 // vertical-lr / rtl NO YES 280 // vertical-lr / rtl NO YES
281 // vertical-rl / ltr YES NO 281 // vertical-rl / ltr YES NO
282 // vertical-rl / rtl YES YES 282 // vertical-rl / rtl YES YES
283 IntPoint m_scrollOrigin; 283 IntPoint m_scrollOrigin;
284 }; 284 };
285 285
286 } // namespace WebCore 286 } // namespace blink
287 287
288 #endif // ScrollableArea_h 288 #endif // ScrollableArea_h
OLDNEW
« no previous file with comments | « Source/platform/scroll/ScrollView.cpp ('k') | Source/platform/scroll/ScrollableArea.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698