| Index: ppapi/tests/test_output_protection_private.h
|
| diff --git a/ppapi/tests/test_output_protection_private.h b/ppapi/tests/test_output_protection_private.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a7a341e921af6fc6377179f4f3bc49fe6b8c0d44
|
| --- /dev/null
|
| +++ b/ppapi/tests/test_output_protection_private.h
|
| @@ -0,0 +1,29 @@
|
| +// Copyright 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.
|
| +
|
| +#ifndef PPAPI_TESTS_TEST_OUTPUT_PROTECTION_PRIVATE_H_
|
| +#define PPAPI_TESTS_TEST_OUTPUT_PROTECTION_PRIVATE_H_
|
| +
|
| +#include <string>
|
| +
|
| +#include "ppapi/cpp/private/output_protection_private.h"
|
| +#include "ppapi/tests/test_case.h"
|
| +#include "ppapi/tests/test_utils.h"
|
| +
|
| +class TestOutputProtectionPrivate: public TestCase {
|
| + public:
|
| + explicit TestOutputProtectionPrivate(TestingInstance* instance);
|
| +
|
| + private:
|
| + // TestCase implementation.
|
| + virtual bool Init();
|
| + virtual void RunTests(const std::string& filter);
|
| +
|
| + std::string TestQueryStatus();
|
| + std::string TestEnableProtection();
|
| +
|
| + const PPB_OutputProtection_Private* output_protection_interface_;
|
| +};
|
| +
|
| +#endif // PPAPI_TESTS_TEST_OUTPUT_PROTECTION_PRIVATE_H_
|
|
|