Revert of Revert of Add a WorkerScheduler and a WebThreadImplForWorker (patchset...
[chromium-blink-merge.git] / net / base / crypto_module_openssl.cc
blob3ef050fc6b3110b90cce61b1664537f517ce85d7
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.
5 #include "base/logging.h"
6 #include "net/base/crypto_module.h"
8 namespace net {
10 std::string CryptoModule::GetTokenName() const {
11 NOTIMPLEMENTED();
12 return "";
15 // static
16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) {
17 NOTIMPLEMENTED();
18 return NULL;
21 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) {
24 CryptoModule::~CryptoModule() {
27 } // namespace net