summaryrefslogtreecommitdiffstats
path: root/base/perftimer.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/perftimer.h')
-rw-r--r--base/perftimer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/base/perftimer.h b/base/perftimer.h
index 1ac1a7d..9a23ff1 100644
--- a/base/perftimer.h
+++ b/base/perftimer.h
@@ -10,14 +10,16 @@
#include "base/basictypes.h"
#include "base/time.h"
+namespace base {
class FilePath;
+}
// ----------------------------------------------------------------------
// Initializes and finalizes the perf log. These functions should be
// called at the beginning and end (respectively) of running all the
// performance tests. The init function returns true on success.
// ----------------------------------------------------------------------
-bool InitPerfLog(const FilePath& log_path);
+bool InitPerfLog(const base::FilePath& log_path);
void FinalizePerfLog();
// ----------------------------------------------------------------------