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

Unified Diff: third_party/WebKit/Source/core/layout/HitTestCache.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/HitTestCache.h
diff --git a/third_party/WebKit/Source/core/layout/HitTestCache.h b/third_party/WebKit/Source/core/layout/HitTestCache.h
index 650c18f5035165dff887245e7c2cdd9b4a34c9ea..bdea06f9b2be00075bc2fe982e4cadb65e43a3c1 100644
--- a/third_party/WebKit/Source/core/layout/HitTestCache.h
+++ b/third_party/WebKit/Source/core/layout/HitTestCache.h
@@ -34,11 +34,10 @@ namespace blink {
// size of 1.
#define HIT_TEST_CACHE_SIZE (2)
-class CORE_EXPORT HitTestCache final : public NoBaseWillBeGarbageCollectedFinalized<HitTestCache> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(HitTestCache);
+class CORE_EXPORT HitTestCache final : public GarbageCollectedFinalized<HitTestCache> {
WTF_MAKE_NONCOPYABLE(HitTestCache);
public:
- static PassOwnPtrWillBeRawPtr<HitTestCache> create()
+ static RawPtr<HitTestCache> create()
{
return adoptPtrWillBeNoop(new HitTestCache);
}
@@ -76,7 +75,7 @@ private:
};
unsigned m_updateIndex;
- WillBeHeapVector<HitTestResult, HIT_TEST_CACHE_SIZE> m_items;
+ HeapVector<HitTestResult, HIT_TEST_CACHE_SIZE> m_items;
uint64_t m_domTreeVersion;
};
« no previous file with comments | « third_party/WebKit/Source/core/fetch/XSLStyleSheetResource.cpp ('k') | third_party/WebKit/Source/core/layout/HitTestResult.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698