Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2808)

Unified Diff: chrome/browser/task_profiler/task_profiler_data_serializer.h

Issue 9702014: [UMA] Use proper C++ objects to serialize tracked_objects across process boundaries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698