| Index: ppapi/tests/test_pdf.h
|
| diff --git a/ppapi/tests/test_empty.h b/ppapi/tests/test_pdf.h
|
| similarity index 53%
|
| copy from ppapi/tests/test_empty.h
|
| copy to ppapi/tests/test_pdf.h
|
| index 3c2ca6ec42e0e9c88a0e4f79c947b9344d8a8d57..5b3e52de40be2fb120258fb36cd26ac79f7616a8 100644
|
| --- a/ppapi/tests/test_empty.h
|
| +++ b/ppapi/tests/test_pdf.h
|
| @@ -2,23 +2,24 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef PPAPI_TESTS_TEST_EMPTY_H_
|
| -#define PPAPI_TESTS_TEST_EMPTY_H_
|
| +#ifndef PAPPI_TESTS_TEST_PDF_H_
|
| +#define PAPPI_TESTS_TEST_PDF_H_
|
|
|
| #include <string>
|
|
|
| +#include "ppapi/c/pp_stdint.h"
|
| #include "ppapi/tests/test_case.h"
|
|
|
| -class TestEmpty : public TestCase {
|
| +class TestPDF : public TestCase {
|
| public:
|
| - explicit TestEmpty(TestingInstance* instance);
|
| + explicit TestPDF(TestingInstance* instance);
|
|
|
| // TestCase implementation.
|
| - virtual bool Init();
|
| virtual void RunTests(const std::string& filter);
|
|
|
| private:
|
| - std::string TestNaClLoad();
|
| + std::string TestGetLocalizedString();
|
| + std::string TestGetResourceImage();
|
| };
|
|
|
| -#endif // PPAPI_TESTS_TEST_EMPTY_H_
|
| +#endif // PAPPI_TESTS_TEST_PDF_H_
|
|
|