Index: base/perftimer.h |
=================================================================== |
--- base/perftimer.h (revision 3954) |
+++ base/perftimer.h (working copy) |
@@ -31,16 +31,16 @@ |
class PerfTimer { |
public: |
PerfTimer() { |
- begin_ = TimeTicks::Now(); |
+ begin_ = base::TimeTicks::Now(); |
} |
// Returns the time elapsed since object construction |
- TimeDelta Elapsed() const { |
- return TimeTicks::Now() - begin_; |
+ base::TimeDelta Elapsed() const { |
+ return base::TimeTicks::Now() - begin_; |
} |
private: |
- TimeTicks begin_; |
+ base::TimeTicks begin_; |
}; |
// ---------------------------------------------------------------------- |