Update from https://crrev.com/309415

Review URL: https://codereview.chromium.org/822713002
diff --git a/base/logging.cc b/base/logging.cc
index 327ac77..5d65fa5 100644
--- a/base/logging.cc
+++ b/base/logging.cc
@@ -659,7 +659,7 @@
   if (log_timestamp) {
     time_t t = time(NULL);
     struct tm local_time = {0};
-#if _MSC_VER >= 1400
+#ifdef _MSC_VER
     localtime_s(&local_time, &t);
 #else
     localtime_r(&t, &local_time);