Cleanup: Pass std::string as const reference from chromeos/
[chromium-blink-merge.git] / chrome / utility / importer / nss_decryptor.h
blobd53e640b5139932c29398751e7f865afe5aa6bb2
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.
5 #ifndef CHROME_UTILITY_IMPORTER_NSS_DECRYPTOR_H_
6 #define CHROME_UTILITY_IMPORTER_NSS_DECRYPTOR_H_
8 #include "build/build_config.h"
10 #if defined(OS_MACOSX)
11 #include "chrome/utility/importer/nss_decryptor_mac.h"
12 #elif defined(OS_WIN)
13 #include "chrome/utility/importer/nss_decryptor_win.h"
14 #elif defined(USE_NSS_CERTS)
15 #include "chrome/utility/importer/nss_decryptor_system_nss.h"
16 #else
17 #error NSSDecryptor not implemented.
18 #endif
20 #endif // CHROME_UTILITY_IMPORTER_NSS_DECRYPTOR_H_