Fix perf output for audioproc and iSAC fixed-point tests

The measurement and trace entries had been mixed up in the calls to webrtc::test::PrintResult, resulting in the plotted graphs were named after the metric. The parameter names are quite confusing which probably led to this.

BUG=none
TEST=none

Review URL: https://webrtc-codereview.appspot.com/1093007

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3496 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/test/kenny.cc b/webrtc/modules/audio_coding/codecs/isac/fix/test/kenny.cc
index 71a2e47..ee70eb0 100644
--- a/webrtc/modules/audio_coding/codecs/isac/fix/test/kenny.cc
+++ b/webrtc/modules/audio_coding/codecs/isac/fix/test/kenny.cc
@@ -811,7 +811,7 @@
   printf("\n\n_______________________________________________\n");
 
   // Record the results with Perf test tools.
-  webrtc::test::PrintResult("time_per_10ms_frame", "", "isac",
+  webrtc::test::PrintResult("isac", "", "time_per_10ms_frame",
                             (runtime * 10000) / length_file, "us", false);
 
   fclose(inp);
diff --git a/webrtc/modules/audio_processing/test/process_test.cc b/webrtc/modules/audio_processing/test/process_test.cc
index 36a9932..98d1592 100644
--- a/webrtc/modules/audio_processing/test/process_test.cc
+++ b/webrtc/modules/audio_processing/test/process_test.cc
@@ -1026,7 +1026,7 @@
           (max_time_us + max_time_reverse_us) / 1000.0,
           (min_time_us + min_time_reverse_us) / 1000.0);
       // Record the results with Perf test tools.
-      webrtc::test::PrintResult("time_per_10ms_frame", "", "audioproc",
+      webrtc::test::PrintResult("audioproc", "", "time_per_10ms_frame",
           (exec_time * 1000) / primary_count, "us", false);
     } else {
       printf("Warning: no capture frames\n");