Chromium Code Reviews

Unified Diff: Source/platform/CryptoResult.h

Issue 1228373006: Reliably cancel in-progress CryptoResult(Impl) upon shutdown. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Revert sync cancellation parts Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/modules/crypto/SubtleCrypto.cpp ('k') | Source/platform/exported/WebCryptoResult.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/CryptoResult.h
diff --git a/Source/platform/CryptoResult.h b/Source/platform/CryptoResult.h
index 3ccff2e211e705773d5ab873db418b2080aa680b..56dae197b0f183360d540b1a219014b5e3d882c4 100644
--- a/Source/platform/CryptoResult.h
+++ b/Source/platform/CryptoResult.h
@@ -37,7 +37,7 @@
namespace blink {
// Receives notification of completion of the crypto operation.
-class CryptoResult : public ThreadSafeRefCounted<CryptoResult> {
+class CryptoResult : public ThreadSafeRefCountedWillBeGarbageCollectedFinalized<CryptoResult> {
public:
virtual ~CryptoResult() { }
@@ -49,12 +49,9 @@ public:
virtual void completeWithKeyPair(const WebCryptoKey& publicKey, const WebCryptoKey& privateKey) = 0;
virtual bool cancelled() const = 0;
- WebCryptoResult result()
- {
- return WebCryptoResult(this);
- }
+ DEFINE_INLINE_VIRTUAL_TRACE() { }
};
} // namespace blink
-#endif
+#endif // CryptoResult_h
« no previous file with comments | « Source/modules/crypto/SubtleCrypto.cpp ('k') | Source/platform/exported/WebCryptoResult.cpp » ('j') | no next file with comments »

Powered by Google App Engine