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

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

Issue 10066045: RefCounted types should not have public destructors, net/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Deprecated cookiestore fix Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/default_server_bound_cert_store.h" 5 #include "net/base/default_server_bound_cert_store.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 9
10 namespace net { 10 namespace net {
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 ServerBoundCert* cert) { 170 ServerBoundCert* cert) {
171 lock_.AssertAcquired(); 171 lock_.AssertAcquired();
172 172
173 if (store_) 173 if (store_)
174 store_->AddServerBoundCert(*cert); 174 store_->AddServerBoundCert(*cert);
175 server_bound_certs_[server_identifier] = cert; 175 server_bound_certs_[server_identifier] = cert;
176 } 176 }
177 177
178 DefaultServerBoundCertStore::PersistentStore::PersistentStore() {} 178 DefaultServerBoundCertStore::PersistentStore::PersistentStore() {}
179 179
180 DefaultServerBoundCertStore::PersistentStore::~PersistentStore() {}
181
180 } // namespace net 182 } // namespace net
OLDNEW
« no previous file with comments | « net/base/default_server_bound_cert_store.h ('k') | net/base/default_server_bound_cert_store_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698