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

Unified Diff: third_party/WebKit/Source/core/css/SelectorFilter.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (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/css/SelectorFilter.h
diff --git a/third_party/WebKit/Source/core/css/SelectorFilter.h b/third_party/WebKit/Source/core/css/SelectorFilter.h
index 3adbeeff62bbb091d2873832e9107772b481df8f..04a586e9387bdbad00def87002029073c0d06665 100644
--- a/third_party/WebKit/Source/core/css/SelectorFilter.h
+++ b/third_party/WebKit/Source/core/css/SelectorFilter.h
@@ -48,7 +48,7 @@ public:
DECLARE_TRACE();
- RawPtrWillBeMember<Element> element;
+ Member<Element> element;
Vector<unsigned, 4> identifierHashes;
};
@@ -67,7 +67,7 @@ private:
void pushParentStackFrame(Element& parent);
void popParentStackFrame();
- WillBeHeapVector<ParentStackFrame> m_parentStack;
+ HeapVector<ParentStackFrame> m_parentStack;
// With 100 unique strings in the filter, 2^12 slot table has false positive rate of ~0.2%.
using IdentifierFilter = BloomFilter<12>;
« no previous file with comments | « third_party/WebKit/Source/core/css/SelectorChecker.cpp ('k') | third_party/WebKit/Source/core/css/StyleMedia.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698