Index: content/shell/common/leak_detection_result.h |
diff --git a/content/shell/common/leak_detection_result.h b/content/shell/common/leak_detection_result.h |
index 7afcfd32494bb7a932d1640b3a197a623123aad4..873a172a592586079864d2608508237db373929a 100644 |
--- a/content/shell/common/leak_detection_result.h |
+++ b/content/shell/common/leak_detection_result.h |
@@ -5,12 +5,13 @@ |
#ifndef CONTENT_SHELL_COMMON_LEAK_DETECTION_RESULT_H_ |
#define CONTENT_SHELL_COMMON_LEAK_DETECTION_RESULT_H_ |
+#include <string> |
+ |
namespace content { |
struct LeakDetectionResult { |
bool leaked; |
- unsigned number_of_live_documents; |
- unsigned number_of_live_nodes; |
+ std::string detail; |
}; |
} // namespace content |