| Index: third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp
|
| diff --git a/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp b/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp
|
| index 9d9704e7f80cb6c04c301c72264b4252b463f5e1..cdba71193f65b999c3ada6d10dd1d844f328d7a9 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp
|
| @@ -8,6 +8,11 @@
|
|
|
| namespace blink {
|
|
|
| +bool WebContentDecryptionModuleResult::isCompleted()
|
| +{
|
| + return m_impl.get();
|
| +}
|
| +
|
| void WebContentDecryptionModuleResult::complete()
|
| {
|
| m_impl->complete();
|
| @@ -46,6 +51,7 @@ void WebContentDecryptionModuleResult::reset()
|
| void WebContentDecryptionModuleResult::assign(const WebContentDecryptionModuleResult& o)
|
| {
|
| m_impl = o.m_impl;
|
| + ASSERT(m_impl.get());
|
| }
|
|
|
| } // namespace blink
|
|
|