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

Side by Side Diff: third_party/WebKit/Source/platform/scroll/ScrollbarTheme.cpp

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) 2011 Apple Inc. All Rights Reserved. 2 * Copyright (C) 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 19 matching lines...) Expand all
30 #include "platform/graphics/GraphicsContext.h" 30 #include "platform/graphics/GraphicsContext.h"
31 #include "platform/graphics/GraphicsContextStateSaver.h" 31 #include "platform/graphics/GraphicsContextStateSaver.h"
32 #include "platform/graphics/paint/CompositingRecorder.h" 32 #include "platform/graphics/paint/CompositingRecorder.h"
33 #include "platform/graphics/paint/CullRect.h" 33 #include "platform/graphics/paint/CullRect.h"
34 #include "platform/graphics/paint/DrawingDisplayItem.h" 34 #include "platform/graphics/paint/DrawingDisplayItem.h"
35 #include "platform/graphics/paint/DrawingRecorder.h" 35 #include "platform/graphics/paint/DrawingRecorder.h"
36 #include "platform/graphics/paint/PaintController.h" 36 #include "platform/graphics/paint/PaintController.h"
37 #include "platform/scroll/Scrollbar.h" 37 #include "platform/scroll/Scrollbar.h"
38 #include "platform/scroll/ScrollbarThemeMock.h" 38 #include "platform/scroll/ScrollbarThemeMock.h"
39 #include "platform/scroll/ScrollbarThemeOverlayMock.h" 39 #include "platform/scroll/ScrollbarThemeOverlayMock.h"
40 #include "platform/wtf/Optional.h"
40 #include "public/platform/Platform.h" 41 #include "public/platform/Platform.h"
41 #include "public/platform/WebMouseEvent.h" 42 #include "public/platform/WebMouseEvent.h"
42 #include "public/platform/WebPoint.h" 43 #include "public/platform/WebPoint.h"
43 #include "public/platform/WebRect.h" 44 #include "public/platform/WebRect.h"
44 #include "public/platform/WebScrollbarBehavior.h" 45 #include "public/platform/WebScrollbarBehavior.h"
45 #include "wtf/Optional.h"
46 46
47 #if !OS(MACOSX) 47 #if !OS(MACOSX)
48 #include "public/platform/WebThemeEngine.h" 48 #include "public/platform/WebThemeEngine.h"
49 #endif 49 #endif
50 50
51 namespace blink { 51 namespace blink {
52 52
53 bool ScrollbarTheme::gMockScrollbarsEnabled = false; 53 bool ScrollbarTheme::gMockScrollbarsEnabled = false;
54 54
55 static inline bool shouldPaintScrollbarPart(const IntRect& partRect, 55 static inline bool shouldPaintScrollbarPart(const IntRect& partRect,
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 return DisplayItem::kScrollbarBackTrack; 434 return DisplayItem::kScrollbarBackTrack;
435 case ForwardTrackPart: 435 case ForwardTrackPart:
436 return DisplayItem::kScrollbarForwardTrack; 436 return DisplayItem::kScrollbarForwardTrack;
437 default: 437 default:
438 ASSERT_NOT_REACHED(); 438 ASSERT_NOT_REACHED();
439 return DisplayItem::kScrollbarBackTrack; 439 return DisplayItem::kScrollbarBackTrack;
440 } 440 }
441 } 441 }
442 442
443 } // namespace blink 443 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698