Templatize percentile_filter.h and move it to base/analytics.

BUG=None

Review-Url: https://codereview.webrtc.org/2529063002
Cr-Commit-Position: refs/heads/master@{#15334}
diff --git a/webrtc/modules/video_coding/codec_timer.h b/webrtc/modules/video_coding/codec_timer.h
index 90ef6bb..1fabeb2 100644
--- a/webrtc/modules/video_coding/codec_timer.h
+++ b/webrtc/modules/video_coding/codec_timer.h
@@ -13,8 +13,8 @@
 
 #include <queue>
 
+#include "webrtc/base/analytics/percentile_filter.h"
 #include "webrtc/modules/include/module_common_types.h"
-#include "webrtc/modules/video_coding/percentile_filter.h"
 #include "webrtc/typedefs.h"
 
 namespace webrtc {
@@ -43,7 +43,7 @@
   std::queue<Sample> history_;
   // |filter_| contains the same values as |history_|, but in a data structure
   // that allows efficient retrieval of the percentile value.
-  PercentileFilter filter_;
+  PercentileFilter<int64_t> filter_;
 };
 
 }  // namespace webrtc