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/paint/ObjectPaintInvalidator.h

Issue 2817663002: Rewrite references to "wtf/" to "platform/wtf/" in core/paint. (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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 ObjectPaintInvalidator_h 5 #ifndef ObjectPaintInvalidator_h
6 #define ObjectPaintInvalidator_h 6 #define ObjectPaintInvalidator_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "platform/graphics/PaintInvalidationReason.h" 9 #include "platform/graphics/PaintInvalidationReason.h"
10 #include "wtf/Allocator.h" 10 #include "platform/wtf/Allocator.h"
11 #include "wtf/AutoReset.h" 11 #include "platform/wtf/AutoReset.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class DisplayItemClient; 15 class DisplayItemClient;
16 class LayoutBoxModelObject; 16 class LayoutBoxModelObject;
17 class LayoutObject; 17 class LayoutObject;
18 class LayoutPoint; 18 class LayoutPoint;
19 class LayoutRect; 19 class LayoutRect;
20 struct PaintInvalidatorContext; 20 struct PaintInvalidatorContext;
21 21
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 public: 131 public:
132 DisablePaintInvalidationStateAsserts(); 132 DisablePaintInvalidationStateAsserts();
133 133
134 private: 134 private:
135 AutoReset<bool> disabler_; 135 AutoReset<bool> disabler_;
136 }; 136 };
137 137
138 } // namespace blink 138 } // namespace blink
139 139
140 #endif 140 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698