Chromium Code Reviews

Unified Diff: base/message_loop.cc

Issue 7995: Move Time, TimeDelta and TimeTicks into namespace base. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: base/message_loop.cc
===================================================================
--- base/message_loop.cc (revision 3954)
+++ base/message_loop.cc (working copy)
@@ -23,6 +23,9 @@
#include "base/message_pump_glib.h"
#endif
+using base::Time;
+using base::TimeDelta;
+
// A lazily created thread local storage for quick access to a thread's message
// loop, if one exists. This should be safe and free of static constructors.
static base::LazyInstance<base::ThreadLocalPointer<MessageLoop> > lazy_tls_ptr(
« no previous file with comments | « base/message_loop.h ('k') | base/message_loop_unittest.cc » ('j') | base/time_format.h » ('J')

Powered by Google App Engine