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

Side by Side Diff: third_party/WebKit/Source/core/layout/compositing/CompositingReasonFinder.h

Issue 2809363002: Rewrite references to "wtf/" to "platform/wtf/" in core/layout. (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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CompositingReasonFinder_h 5 #ifndef CompositingReasonFinder_h
6 #define CompositingReasonFinder_h 6 #define CompositingReasonFinder_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/layout/compositing/CompositingTriggers.h" 9 #include "core/layout/compositing/CompositingTriggers.h"
10 #include "platform/graphics/CompositingReasons.h" 10 #include "platform/graphics/CompositingReasons.h"
11 #include "wtf/Allocator.h" 11 #include "platform/wtf/Allocator.h"
12 #include "wtf/Noncopyable.h" 12 #include "platform/wtf/Noncopyable.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class PaintLayer; 16 class PaintLayer;
17 class LayoutObject; 17 class LayoutObject;
18 class ComputedStyle; 18 class ComputedStyle;
19 class LayoutView; 19 class LayoutView;
20 20
21 class CORE_EXPORT CompositingReasonFinder { 21 class CORE_EXPORT CompositingReasonFinder {
22 DISALLOW_NEW(); 22 DISALLOW_NEW();
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 const PaintLayer*, 55 const PaintLayer*,
56 bool ignore_lcd_text) const; 56 bool ignore_lcd_text) const;
57 57
58 LayoutView& layout_view_; 58 LayoutView& layout_view_;
59 CompositingTriggerFlags compositing_triggers_; 59 CompositingTriggerFlags compositing_triggers_;
60 }; 60 };
61 61
62 } // namespace blink 62 } // namespace blink
63 63
64 #endif // CompositingReasonFinder_h 64 #endif // CompositingReasonFinder_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698