| Index: ppapi/tests/test_file_chooser.h
|
| diff --git a/ppapi/tests/test_file_chooser.h b/ppapi/tests/test_file_chooser.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1b44f610071c7bfbc14cb3bef9c7238b0de2361f
|
| --- /dev/null
|
| +++ b/ppapi/tests/test_file_chooser.h
|
| @@ -0,0 +1,36 @@
|
| +// Copyright 2015 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_FILE_CHOOSER_H_
|
| +#define PPAPI_TESTS_TEST_FILE_CHOOSER_H_
|
| +
|
| +#include "ppapi/tests/test_case.h"
|
| +
|
| +namespace pp {
|
| +class FileRef;
|
| +}
|
| +
|
| +class TestFileChooser : public TestCase {
|
| + public:
|
| + TestFileChooser(TestingInstance* instance) : TestCase(instance) {}
|
| +
|
| + // TestCase
|
| + bool Init() override;
|
| + void RunTests(const std::string& filter);
|
| +
|
| + private:
|
| + // Writes the string "Hello from PPAPI" into the file represented by
|
| + // |file_ref|. Returns true on success.
|
| + bool WriteDefaultContentsToFile(const pp::FileRef& file_ref);
|
| +
|
| + std::string TestOpenSimple();
|
| + std::string TestOpenCancel();
|
| + std::string TestSaveAsSafeDefaultName();
|
| + std::string TestSaveAsUnsafeDefaultName();
|
| + std::string TestSaveAsCancel();
|
| + std::string TestSaveAsDangerousExecutableAllowed();
|
| + std::string TestSaveAsDangerousExecutableDisallowed();
|
| +};
|
| +
|
| +#endif // PPAPI_TESTS_TEST_FILE_CHOOSER_H_
|
|
|