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

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

Issue 2724013002: net: remove CryptoModule class (Closed)
Patch Set: Created 3 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
« no previous file with comments | « net/base/crypto_module_nss.cc ('k') | net/cert/nss_cert_database.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/logging.h"
6 #include "net/base/crypto_module.h"
7
8 namespace net {
9
10 std::string CryptoModule::GetTokenName() const {
11 NOTIMPLEMENTED();
12 return "";
13 }
14
15 // static
16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) {
17 NOTIMPLEMENTED();
18 return NULL;
19 }
20
21 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) {
22 }
23
24 CryptoModule::~CryptoModule() {
25 }
26
27 } // namespace net
OLDNEW
« no previous file with comments | « net/base/crypto_module_nss.cc ('k') | net/cert/nss_cert_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698