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

Unified Diff: Source/core/platform/CryptoResult.h

Issue 133253002: [webcrypto] Fix TODO regarding asynchronous completion of crypto operations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove unused forward declaration of ScriptState Created 6 years, 11 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
« no previous file with comments | « no previous file | Source/modules/crypto/CryptoResultImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/CryptoResult.h
diff --git a/Source/core/platform/CryptoResult.h b/Source/core/platform/CryptoResult.h
index 45aaef5945b57f7568d085f1099b99a87050a7ad..0ba22215c9af38d7dfca6a2c984fa45af6c1b58c 100644
--- a/Source/core/platform/CryptoResult.h
+++ b/Source/core/platform/CryptoResult.h
@@ -32,12 +32,12 @@
#define CryptoResult_h
#include "public/platform/WebCrypto.h"
-#include "wtf/ThreadSafeRefCounted.h"
+#include "wtf/RefCounted.h"
namespace WebCore {
// Receives notification of completion of the crypto operation.
-class CryptoResult : public ThreadSafeRefCounted<CryptoResult> {
+class CryptoResult : public RefCounted<CryptoResult> {
public:
virtual ~CryptoResult() { }
« no previous file with comments | « no previous file | Source/modules/crypto/CryptoResultImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698