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

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

Issue 12680003: net: split net/ssl out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 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/ssl/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 #include "base/metrics/histogram.h" 9 #include "base/metrics/histogram.h"
10 10
11 namespace net { 11 namespace net {
12 12
13 // -------------------------------------------------------------------------- 13 // --------------------------------------------------------------------------
14 // Task 14 // Task
15 class DefaultServerBoundCertStore::Task { 15 class DefaultServerBoundCertStore::Task {
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 if (store_) 484 if (store_)
485 store_->AddServerBoundCert(*cert); 485 store_->AddServerBoundCert(*cert);
486 server_bound_certs_[server_identifier] = cert; 486 server_bound_certs_[server_identifier] = cert;
487 } 487 }
488 488
489 DefaultServerBoundCertStore::PersistentStore::PersistentStore() {} 489 DefaultServerBoundCertStore::PersistentStore::PersistentStore() {}
490 490
491 DefaultServerBoundCertStore::PersistentStore::~PersistentStore() {} 491 DefaultServerBoundCertStore::PersistentStore::~PersistentStore() {}
492 492
493 } // namespace net 493 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698