summaryrefslogtreecommitdiffstats
path: root/base/time_posix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/time_posix.cc')
-rw-r--r--base/time_posix.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/base/time_posix.cc b/base/time_posix.cc
index 18dc240..901b65c 100644
--- a/base/time_posix.cc
+++ b/base/time_posix.cc
@@ -13,6 +13,8 @@
#include "base/basictypes.h"
#include "base/logging.h"
+namespace base {
+
// The Time routines in this file use standard POSIX routines, or almost-
// standard routines in the case of timegm. We need to use a Mach-specific
// function for TimeTicks::Now() on Mac OS X.
@@ -140,3 +142,5 @@ TimeTicks TimeTicks::Now() {
TimeTicks TimeTicks::HighResNow() {
return Now();
}
+
+} // namespace base