Index: chrome/browser/task_profiler/task_profiler_data_serializer.cc |
diff --git a/chrome/browser/task_profiler/task_profiler_data_serializer.cc b/chrome/browser/task_profiler/task_profiler_data_serializer.cc |
index 6f4b52ee948b7368ac23902116ec48cea5d14bb9..ffc07fc96fdf73f35ee9c7a17893636c2304a74b 100644 |
--- a/chrome/browser/task_profiler/task_profiler_data_serializer.cc |
+++ b/chrome/browser/task_profiler/task_profiler_data_serializer.cc |
@@ -52,7 +52,7 @@ void BirthOnThreadSnapshotToValue(const BirthOnThreadSnapshot& birth, |
dictionary->Set(prefix + "_location", location_value.release()); |
dictionary->Set(prefix + "_thread", |
- new base::StringValue(birth.sanitized_thread_name)); |
+ new base::Value(birth.sanitized_thread_name)); |
} |
// Re-serializes the |death_data| into |dictionary|. |