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 GetTokenName() const10std::string CryptoModule::GetTokenName() const { 11 NOTIMPLEMENTED(); 12 return ""; 13 } 14 15 // static CreateFromHandle(OSModuleHandle handle)16CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { 17 NOTIMPLEMENTED(); 18 return NULL; 19 } 20 CryptoModule(OSModuleHandle handle)21CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) { 22 } 23 ~CryptoModule()24CryptoModule::~CryptoModule() { 25 } 26 27 } // namespace net 28