[UMA] Un-swap the function and file name hashes for the uploaded profiler data.
BUG=154242
TEST=none
Review URL: https://chromiumcodereview.appspot.com/11066038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163468 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/metrics/metrics_log.cc b/chrome/browser/metrics/metrics_log.cc
index ec7c8c0..ce22188 100644
--- a/chrome/browser/metrics/metrics_log.cc
+++ b/chrome/browser/metrics/metrics_log.cc
@@ -225,9 +225,9 @@
&ignored, &birth_thread_name_hash);
MetricsLogBase::CreateHashes(it->death_thread_name,
&ignored, &exec_thread_name_hash);
- MetricsLogBase::CreateHashes(it->birth.location.function_name,
- &ignored, &source_file_name_hash);
MetricsLogBase::CreateHashes(it->birth.location.file_name,
+ &ignored, &source_file_name_hash);
+ MetricsLogBase::CreateHashes(it->birth.location.function_name,
&ignored, &source_function_name_hash);
const tracked_objects::DeathDataSnapshot& death_data = it->death_data;