summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp')
-rw-r--r--chromium/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/chromium/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp b/chromium/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp
new file mode 100644
index 00000000000..cd6bdd40c1d
--- /dev/null
+++ b/chromium/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp
@@ -0,0 +1,46 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "config.h"
+#include "public/platform/WebContentDecryptionModuleResult.h"
+
+#include "platform/ContentDecryptionModuleResult.h"
+
+namespace blink {
+
+void WebContentDecryptionModuleResult::complete()
+{
+ m_impl->complete();
+ reset();
+}
+
+void WebContentDecryptionModuleResult::completeWithSession(SessionStatus status)
+{
+ m_impl->completeWithSession(status);
+ reset();
+}
+
+void WebContentDecryptionModuleResult::completeWithError(WebContentDecryptionModuleException exception, unsigned long systemCode, const WebString& errorMessage)
+{
+ m_impl->completeWithError(exception, systemCode, errorMessage);
+ reset();
+}
+
+WebContentDecryptionModuleResult::WebContentDecryptionModuleResult(WebCore::ContentDecryptionModuleResult* impl)
+ : m_impl(impl)
+{
+ ASSERT(m_impl.get());
+}
+
+void WebContentDecryptionModuleResult::reset()
+{
+ m_impl.reset();
+}
+
+void WebContentDecryptionModuleResult::assign(const WebContentDecryptionModuleResult& o)
+{
+ m_impl = o.m_impl;
+}
+
+} // namespace blink