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

Side by Side Diff: net/base/x509_certificate_nss.cc

Issue 7974: Port a few test_shell_tests. Now it runs 45 of them.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/file_version_info_linux.cc ('k') | webkit/glue/autocomplete_input_listener_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/base/x509_certificate.h" 5 #include "net/base/x509_certificate.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace net { 9 namespace net {
10 10
11 // TODO(port): finish implementing. 11 // TODO(port): finish implementing.
12 // At the moment, all that's here is just enough to prevent a link error. 12 // At the moment, all that's here is just enough to prevent a link error.
13 13
14 X509Certificate::~X509Certificate() { 14 X509Certificate::~X509Certificate() {
15 // We might not be in the cache, but it is safe to remove ourselves anyway. 15 // We might not be in the cache, but it is safe to remove ourselves anyway.
16 X509Certificate::Cache::GetInstance()->Remove(this); 16 X509Certificate::Cache::GetInstance()->Remove(this);
17 } 17 }
18 18
19 // static
20 X509Certificate* X509Certificate::CreateFromPickle(const Pickle& pickle,
21 void** pickle_iter) {
22 NOTIMPLEMENTED();
23 return NULL;
24 }
25
26 void X509Certificate::Persist(Pickle* pickle) {
27 NOTIMPLEMENTED();
28 }
19 29
20 } // namespace net 30 } // namespace net
21 31
OLDNEW
« no previous file with comments | « base/file_version_info_linux.cc ('k') | webkit/glue/autocomplete_input_listener_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698