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

Unified Diff: third_party/WebKit/Source/modules/crypto/DOMWindowCrypto.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/modules/crypto/DOMWindowCrypto.h
diff --git a/third_party/WebKit/Source/modules/crypto/DOMWindowCrypto.h b/third_party/WebKit/Source/modules/crypto/DOMWindowCrypto.h
index 9515d02614d8d589ed015c04a958ecc40c9dc68b..9d5f361113d3b1bee0faa6641ab5dc259709f41f 100644
--- a/third_party/WebKit/Source/modules/crypto/DOMWindowCrypto.h
+++ b/third_party/WebKit/Source/modules/crypto/DOMWindowCrypto.h
@@ -40,10 +40,8 @@ namespace blink {
class Crypto;
class DOMWindow;
-class DOMWindowCrypto final : public NoBaseWillBeGarbageCollected<DOMWindowCrypto>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowCrypto);
- DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowCrypto);
- USING_FAST_MALLOC_WILL_BE_REMOVED(DOMWindowCrypto);
+class DOMWindowCrypto final : public GarbageCollected<DOMWindowCrypto>, public HeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
+ USING_GARBAGE_COLLECTED_MIXIN(DOMWindowCrypto);
public:
static DOMWindowCrypto& from(LocalDOMWindow&);
static Crypto* crypto(DOMWindow&);
@@ -55,7 +53,7 @@ private:
explicit DOMWindowCrypto(LocalDOMWindow&);
static const char* supplementName();
- mutable PersistentWillBeMember<Crypto> m_crypto;
+ mutable Member<Crypto> m_crypto;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698