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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/paint/CullRect.h

Issue 2798823002: Rewrite references to "wtf/" to "platform/wtf/" in platform/graphics. (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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CullRect_h 5 #ifndef CullRect_h
6 #define CullRect_h 6 #define CullRect_h
7 7
8 #include "platform/geometry/IntRect.h" 8 #include "platform/geometry/IntRect.h"
9 #include "platform/transforms/AffineTransform.h" 9 #include "platform/transforms/AffineTransform.h"
10 #include "wtf/Allocator.h" 10 #include "platform/wtf/Allocator.h"
11 #include "wtf/HashMap.h" 11 #include "platform/wtf/HashMap.h"
12 #include "wtf/ListHashSet.h" 12 #include "platform/wtf/ListHashSet.h"
13 #include "wtf/text/WTFString.h" 13 #include "platform/wtf/text/WTFString.h"
14 14
15 #include <limits> 15 #include <limits>
16 16
17 namespace blink { 17 namespace blink {
18 18
19 class FloatRect; 19 class FloatRect;
20 class LayoutRect; 20 class LayoutRect;
21 class LayoutUnit; 21 class LayoutUnit;
22 22
23 class PLATFORM_EXPORT CullRect { 23 class PLATFORM_EXPORT CullRect {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 inline bool operator==(const CullRect& a, const CullRect& b) { 60 inline bool operator==(const CullRect& a, const CullRect& b) {
61 return a.m_rect == b.m_rect; 61 return a.m_rect == b.m_rect;
62 } 62 }
63 inline bool operator!=(const CullRect& a, const CullRect& b) { 63 inline bool operator!=(const CullRect& a, const CullRect& b) {
64 return !(a == b); 64 return !(a == b);
65 } 65 }
66 66
67 } // namespace blink 67 } // namespace blink
68 68
69 #endif // CullRect_h 69 #endif // CullRect_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698