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

Unified Diff: ppapi/tests/test_file_chooser.h

Issue 1409003002: [SafeBrowsing] Block dangerous unchecked downloads based on a Finch trial. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « ppapi/ppapi_sources.gypi ('k') | ppapi/tests/test_file_chooser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « ppapi/ppapi_sources.gypi ('k') | ppapi/tests/test_file_chooser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698