OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2009 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 <Cocoa/Cocoa.h> |
| 6 |
| 7 #include "chrome/browser/importer/nss_decryptor_mac.h" |
| 8 |
| 9 #include "base/logging.h" |
| 10 |
| 11 // static |
| 12 const wchar_t NSSDecryptor::kNSS3Library[] = L"libnss3.dylib"; |
| 13 const wchar_t NSSDecryptor::kSoftokn3Library[] = L"libsoftokn3.dylib"; |
| 14 const wchar_t NSSDecryptor::kPLDS4Library[] = L"libplds4.dylib"; |
| 15 const wchar_t NSSDecryptor::kNSPR4Library[] = L"libnspr4.dylib"; |
| 16 |
| 17 bool NSSDecryptor::Init(const std::wstring& dll_path, |
| 18 const std::wstring& db_path) { |
| 19 // TODO(port): Load the NSS libraries and call InitNSS() |
| 20 // http://code.google.com/p/chromium/issues/detail?id=15455 |
| 21 NOTIMPLEMENTED(); |
| 22 return false; |
| 23 } |
OLD | NEW |