Index: chrome/browser/task_profiler/task_profiler_data_serializer.h |
diff --git a/chrome/browser/task_profiler/task_profiler_data_serializer.h b/chrome/browser/task_profiler/task_profiler_data_serializer.h |
index 8ada67038be2113cdd1de9813670748ebcf41559..728b8865bf3a9366218b0f0dc8ddd5bffba1eccd 100644 |
--- a/chrome/browser/task_profiler/task_profiler_data_serializer.h |
+++ b/chrome/browser/task_profiler/task_profiler_data_serializer.h |
@@ -6,6 +6,8 @@ |
#define CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_ |
#pragma once |
+#include "base/basictypes.h" |
+ |
class FilePath; |
namespace task_profiler { |
@@ -14,7 +16,11 @@ namespace task_profiler { |
// format is compatible with the about:profiler UI. |
class TaskProfilerDataSerializer { |
public: |
- bool WriteToFile(const FilePath &path); |
+ TaskProfilerDataSerializer() {} |
+ bool WriteToFile(const FilePath& path); |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(TaskProfilerDataSerializer); |
}; |
} // namespace task_profiler |