Use FILE* instead of const FILE* in perf_test.h

TBR=phoglund@webrtc.org

Bug: chromium:755660
Change-Id: I5e4c808668c8a376d4bd518236ae969c693f979b
Reviewed-on: https://webrtc-review.googlesource.com/43960
Reviewed-by: Edward Lemur <ehmaldonado@webrtc.org>
Commit-Queue: Edward Lemur <ehmaldonado@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21765}
diff --git a/test/testsupport/perf_test.h b/test/testsupport/perf_test.h
index fbc1ef9..4f718bb 100644
--- a/test/testsupport/perf_test.h
+++ b/test/testsupport/perf_test.h
@@ -71,7 +71,7 @@
 
 // By default, perf results are printed to stdout. Set the FILE* to where they
 // should be printing instead.
-void SetPerfResultsOutput(const FILE* output);
+void SetPerfResultsOutput(FILE* output);
 
 // You shouldn't use this function. It's only used to test the functions above.
 void ClearPerfResults();