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

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

Issue 2801653002: Rewrite references to "wtf/" to "platform/wtf/" in platform/scroll. (Closed)
Patch Set: Created 3 years, 8 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) 2004, 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2004, 2006 Apple Computer, 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 Scrollbar_h 26 #ifndef Scrollbar_h
27 #define Scrollbar_h 27 #define Scrollbar_h
28 28
29 #include "platform/FrameViewBase.h" 29 #include "platform/FrameViewBase.h"
30 #include "platform/Timer.h" 30 #include "platform/Timer.h"
31 #include "platform/graphics/paint/DisplayItem.h" 31 #include "platform/graphics/paint/DisplayItem.h"
32 #include "platform/heap/Handle.h" 32 #include "platform/heap/Handle.h"
33 #include "platform/scroll/ScrollTypes.h" 33 #include "platform/scroll/ScrollTypes.h"
34 #include "platform/scroll/ScrollbarThemeClient.h" 34 #include "platform/scroll/ScrollbarThemeClient.h"
35 #include "wtf/MathExtras.h" 35 #include "platform/wtf/MathExtras.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class GraphicsContext; 39 class GraphicsContext;
40 class HostWindow; 40 class HostWindow;
41 class IntRect; 41 class IntRect;
42 class ScrollableArea; 42 class ScrollableArea;
43 class ScrollbarTheme; 43 class ScrollbarTheme;
44 class WebGestureEvent; 44 class WebGestureEvent;
45 class WebMouseEvent; 45 class WebMouseEvent;
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 262
263 DEFINE_TYPE_CASTS(Scrollbar, 263 DEFINE_TYPE_CASTS(Scrollbar,
264 FrameViewBase, 264 FrameViewBase,
265 frameViewBase, 265 frameViewBase,
266 frameViewBase->isScrollbar(), 266 frameViewBase->isScrollbar(),
267 frameViewBase.isScrollbar()); 267 frameViewBase.isScrollbar());
268 268
269 } // namespace blink 269 } // namespace blink
270 270
271 #endif // Scrollbar_h 271 #endif // Scrollbar_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698