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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp

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 #include "platform/graphics/paint/DisplayItemClient.h" 5 #include "platform/graphics/paint/DisplayItemClient.h"
6 6
7 #if CHECK_DISPLAY_ITEM_CLIENT_ALIVENESS 7 #if CHECK_DISPLAY_ITEM_CLIENT_ALIVENESS
8 #include "wtf/HashMap.h" 8 #include "platform/wtf/HashMap.h"
9 #include "wtf/HashSet.h" 9 #include "platform/wtf/HashSet.h"
10 #endif 10 #endif
11 11
12 namespace blink { 12 namespace blink {
13 13
14 DisplayItemClient::CacheGenerationOrInvalidationReason::ValueType 14 DisplayItemClient::CacheGenerationOrInvalidationReason::ValueType
15 DisplayItemClient::CacheGenerationOrInvalidationReason::s_nextGeneration = 15 DisplayItemClient::CacheGenerationOrInvalidationReason::s_nextGeneration =
16 kFirstValidGeneration; 16 kFirstValidGeneration;
17 17
18 #if CHECK_DISPLAY_ITEM_CLIENT_ALIVENESS 18 #if CHECK_DISPLAY_ITEM_CLIENT_ALIVENESS
19 19
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 } 74 }
75 75
76 void DisplayItemClient::endShouldKeepAliveAllClients() { 76 void DisplayItemClient::endShouldKeepAliveAllClients() {
77 delete displayItemClientsShouldKeepAlive; 77 delete displayItemClientsShouldKeepAlive;
78 displayItemClientsShouldKeepAlive = nullptr; 78 displayItemClientsShouldKeepAlive = nullptr;
79 } 79 }
80 80
81 #endif // CHECK_DISPLAY_ITEM_CLIENT_ALIVENESS 81 #endif // CHECK_DISPLAY_ITEM_CLIENT_ALIVENESS
82 82
83 } // namespace blink 83 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698