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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/compositing/PropertyTreeManager.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 PropertyTreeManager_h 5 #ifndef PropertyTreeManager_h
6 #define PropertyTreeManager_h 6 #define PropertyTreeManager_h
7 7
8 #include "wtf/HashMap.h" 8 #include "platform/wtf/HashMap.h"
9 #include "wtf/HashSet.h" 9 #include "platform/wtf/HashSet.h"
10 #include "wtf/Noncopyable.h" 10 #include "platform/wtf/Noncopyable.h"
11 #include "wtf/Vector.h" 11 #include "platform/wtf/Vector.h"
12 12
13 namespace cc { 13 namespace cc {
14 class ClipTree; 14 class ClipTree;
15 class EffectTree; 15 class EffectTree;
16 class Layer; 16 class Layer;
17 class PropertyTrees; 17 class PropertyTrees;
18 class ScrollTree; 18 class ScrollTree;
19 class TransformTree; 19 class TransformTree;
20 } 20 }
21 21
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 int m_sequenceNumber; 121 int m_sequenceNumber;
122 122
123 #if DCHECK_IS_ON() 123 #if DCHECK_IS_ON()
124 HashSet<const EffectPaintPropertyNode*> m_effectNodesConverted; 124 HashSet<const EffectPaintPropertyNode*> m_effectNodesConverted;
125 #endif 125 #endif
126 }; 126 };
127 127
128 } // namespace blink 128 } // namespace blink
129 129
130 #endif // PropertyTreeManager_h 130 #endif // PropertyTreeManager_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698