| Index: Source/platform/exported/WebCryptoResult.cpp
 | 
| diff --git a/Source/platform/exported/WebCryptoResult.cpp b/Source/platform/exported/WebCryptoResult.cpp
 | 
| index 95c630c141ace5e45d61fd6ca0512831bd8353ca..d5515064a86e9aa829d129b2828f678f1820fadf 100644
 | 
| --- a/Source/platform/exported/WebCryptoResult.cpp
 | 
| +++ b/Source/platform/exported/WebCryptoResult.cpp
 | 
| @@ -32,7 +32,7 @@
 | 
|  #include "public/platform/WebCrypto.h"
 | 
|  
 | 
|  #include "platform/CryptoResult.h"
 | 
| -#include "wtf/PassRefPtr.h"
 | 
| +#include "platform/heap/Heap.h"
 | 
|  #include <string.h>
 | 
|  
 | 
|  namespace blink {
 | 
| @@ -81,7 +81,7 @@ bool WebCryptoResult::cancelled() const
 | 
|      return m_impl->cancelled();
 | 
|  }
 | 
|  
 | 
| -WebCryptoResult::WebCryptoResult(const PassRefPtr<CryptoResult>& impl)
 | 
| +WebCryptoResult::WebCryptoResult(const PassRefPtrWillBeRawPtr<CryptoResult>& impl)
 | 
|      : m_impl(impl)
 | 
|  {
 | 
|      ASSERT(m_impl.get());
 | 
| 
 |