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

Unified Diff: ppapi/tests/test_output_protection_private.cc

Issue 24039002: Pepper API implementation for output protection. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fix test on chromeos Created 7 years, 3 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
Index: ppapi/tests/test_output_protection_private.cc
diff --git a/ppapi/tests/test_output_protection_private.cc b/ppapi/tests/test_output_protection_private.cc
new file mode 100644
index 0000000000000000000000000000000000000000..70818835b68fe2381d65d504a3e221f5e6a6993a
--- /dev/null
+++ b/ppapi/tests/test_output_protection_private.cc
@@ -0,0 +1,60 @@
+// Copyright (c) 2013 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 "ppapi/tests/test_output_protection_private.h"
+
+#include "ppapi/tests/testing_instance.h"
+
+REGISTER_TEST_CASE(OutputProtectionPrivate);
+
+TestOutputProtectionPrivate::TestOutputProtectionPrivate(
+ TestingInstance* instance)
+ : TestCase(instance) {
+}
+
+bool TestOutputProtectionPrivate::Init() {
+ output_protection_interface_ =
+ static_cast<const PPB_OutputProtection_Private*>(
+ pp::Module::Get()->GetBrowserInterface(
+ PPB_OUTPUTPROTECTION_PRIVATE_INTERFACE_0_1));
+ return output_protection_interface_ && CheckTestingInterface();
+}
+
+void TestOutputProtectionPrivate::RunTests(const std::string& filter) {
+ RUN_TEST(QueryStatus, filter);
+ RUN_TEST(EnableProtection, filter);
+}
+
+std::string TestOutputProtectionPrivate::TestQueryStatus() {
+ TestCompletionCallback callback(instance_->pp_instance(), callback_type());
+
+ PP_Resource output_protection_resource = output_protection_interface_->
+ Create(instance_->pp_instance());
+ uint32_t link_mask;
+ uint32_t protection_mask;
+ callback.WaitForResult(
+ output_protection_interface_->QueryStatus(
+ output_protection_resource,
+ &link_mask,
+ &protection_mask,
+ callback.GetCallback().pp_completion_callback()));
+ CHECK_CALLBACK_BEHAVIOR(callback);
+
+ PASS();
+}
+
+std::string TestOutputProtectionPrivate::TestEnableProtection() {
+ TestCompletionCallback callback(instance_->pp_instance(), callback_type());
+
+ PP_Resource output_protection_resource = output_protection_interface_->
+ Create(instance_->pp_instance());
+ callback.WaitForResult(
+ output_protection_interface_->EnableProtection(
+ output_protection_resource,
+ PP_OUTPUT_PROTECTION_METHOD_PRIVATE_NONE,
+ callback.GetCallback().pp_completion_callback()));
+ CHECK_CALLBACK_BEHAVIOR(callback);
+
+ PASS();
+}

Powered by Google App Engine
This is Rietveld 408576698