From dca5cbb44a2665ce7248d99fae0007ed344734cf Mon Sep 17 00:00:00 2001 From: "evanm@google.com" Date: Mon, 27 Oct 2008 22:46:31 +0000 Subject: Port a few test_shell_tests. Now it runs 45 of them. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I removed some files from test_files because scons complains (warns) when a file is both in test_files and input_files. So the files removed from test_files also exist in input_files and at some pointed will be ported anyway. I also made some linking stubs. BUG=3674 Review URL: http://codereview.chromium.org/7974 Patch from Paweł Hajdan jr . git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4031 0039d316-1c4b-4281-b951-d872f2087c98 --- net/base/x509_certificate_nss.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'net/base/x509_certificate_nss.cc') diff --git a/net/base/x509_certificate_nss.cc b/net/base/x509_certificate_nss.cc index 3906ae1..6dc837f9 100644 --- a/net/base/x509_certificate_nss.cc +++ b/net/base/x509_certificate_nss.cc @@ -16,6 +16,16 @@ X509Certificate::~X509Certificate() { X509Certificate::Cache::GetInstance()->Remove(this); } +// static +X509Certificate* X509Certificate::CreateFromPickle(const Pickle& pickle, + void** pickle_iter) { + NOTIMPLEMENTED(); + return NULL; +} + +void X509Certificate::Persist(Pickle* pickle) { + NOTIMPLEMENTED(); +} } // namespace net -- cgit v1.1