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

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
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..349bb8301aea56211c0cf313b3109dc530650e1c
--- /dev/null
+++ b/ppapi/tests/test_file_chooser.h
@@ -0,0 +1,33 @@
+// 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:
+ bool WriteDefaultContentsToFile(const pp::FileRef& file_ref);
+
+ std::string TestOpenSimple();
+ std::string TestOpenCancel();
+ std::string TestSaveAsSafeDefaultName();
+ std::string TestSaveAsUnsafeDefaultName();
+ std::string TestSaveAsDangerousExecutableAllowed();
+ std::string TestSaveAsDangerousExecutableDisallowed();
+};
+
+#endif // PPAPI_TESTS_TEST_FILE_CHOOSER_H_

Powered by Google App Engine
This is Rietveld 408576698