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

Unified Diff: base/process/process_info_unittest.cc

Issue 2903323002: fuchsia: Don't reference CurrentProcessInfo::CreationTime() (Closed)
Patch Set: fix comment Created 3 years, 7 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
« no previous file with comments | « no previous file | base/trace_event/trace_log.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process/process_info_unittest.cc
diff --git a/base/process/process_info_unittest.cc b/base/process/process_info_unittest.cc
index a757774fdad8a98f3a33b1372b12a100fa45ced7..727c3038ff37e882320c8e03b92374d0ef905dfd 100644
--- a/base/process/process_info_unittest.cc
+++ b/base/process/process_info_unittest.cc
@@ -10,11 +10,12 @@
namespace base {
-#if !defined(OS_IOS)
+// See https://crbug.com/726484 for Fuchsia.
+#if !defined(OS_IOS) && !defined(OS_FUCHSIA)
TEST(ProcessInfoTest, CreationTime) {
Time creation_time = CurrentProcessInfo::CreationTime();
ASSERT_FALSE(creation_time.is_null());
}
-#endif // !defined(OS_IOS)
+#endif // !defined(OS_IOS) && !defined(OS_FUCHSIA)
} // namespace base
« no previous file with comments | « no previous file | base/trace_event/trace_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698