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

Unified Diff: ppapi/tests/test_x509_certificate_private.h

Issue 9693024: Add the PPAPI X509 Certificate interface and implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 9 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/tests/all_c_includes.h ('k') | ppapi/tests/test_x509_certificate_private.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_x509_certificate_private.h
diff --git a/ppapi/tests/test_x509_certificate_private.h b/ppapi/tests/test_x509_certificate_private.h
new file mode 100644
index 0000000000000000000000000000000000000000..0b3da9981e2ab1f2777619796ba16bf39e024958
--- /dev/null
+++ b/ppapi/tests/test_x509_certificate_private.h
@@ -0,0 +1,25 @@
+// Copyright (c) 2012 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 PPAPPI_TESTS_TEST_X509_CERTIFICATE_PRIVATE_H_
+#define PPAPPI_TESTS_TEST_X509_CERTIFICATE_PRIVATE_H_
+
+#include <string>
+
+#include "ppapi/tests/test_case.h"
+
+class TestX509CertificatePrivate : public TestCase {
+ public:
+ explicit TestX509CertificatePrivate(TestingInstance* instance);
+
+ // TestCase implementation.
+ virtual bool Init();
+ virtual void RunTests(const std::string& filter);
+
+ private:
+ std::string TestValidCertificate();
+ std::string TestInvalidCertificate();
+};
+
+#endif // PPAPPI_TESTS_TEST_X509_CERTIFICATE_PRIVATE_H_
« no previous file with comments | « ppapi/tests/all_c_includes.h ('k') | ppapi/tests/test_x509_certificate_private.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698