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

Unified Diff: chrome/browser/importer/firefox_importer_unittest.cc

Issue 12545059: ifdef OS_NAME -> if defined(OS_NAME) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/importer/firefox_importer_unittest.cc
diff --git a/chrome/browser/importer/firefox_importer_unittest.cc b/chrome/browser/importer/firefox_importer_unittest.cc
index 151c93496c63883fdb5816860e5d8271d6acaf4c..8c8b9fae6672011da67db408d38b21d060fbdec4 100644
--- a/chrome/browser/importer/firefox_importer_unittest.cc
+++ b/chrome/browser/importer/firefox_importer_unittest.cc
@@ -498,7 +498,7 @@ TEST_F(FirefoxProfileImporterTest, MAYBE_IMPORTER(Firefox35Importer)) {
TEST(FirefoxImporterTest, MAYBE_NSS(Firefox2NSS3Decryptor)) {
base::FilePath nss_path;
ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &nss_path));
-#ifdef OS_MACOSX
+#if defined(OS_MACOSX)
nss_path = nss_path.AppendASCII("firefox2_nss_mac");
#else
nss_path = nss_path.AppendASCII("firefox2_nss");
@@ -523,7 +523,7 @@ TEST(FirefoxImporterTest, MAYBE_NSS(Firefox2NSS3Decryptor)) {
TEST(FirefoxImporterTest, MAYBE_NSS(Firefox3NSS3Decryptor)) {
base::FilePath nss_path;
ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &nss_path));
-#ifdef OS_MACOSX
+#if defined(OS_MACOSX)
nss_path = nss_path.AppendASCII("firefox3_nss_mac");
#else
nss_path = nss_path.AppendASCII("firefox3_nss");

Powered by Google App Engine
This is Rietveld 408576698