Introduce possibility to poll stats and notify analyzers.

This CL introduces the possibility to poll the 2 peer connections
at constant intervals.

It also introduces a dummy AudioQualityAnalyzer that will have to
be implemented in a follow-up CL and it moves every type of the
test framework inside the webrtc::test namespace.

Bug: webrtc:10138
Change-Id: I40acf7894bd67ea5229baba2d2cf18cd8ef65e67
Reviewed-on: https://webrtc-review.googlesource.com/c/123441
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26854}
diff --git a/test/pc/e2e/api/stats_observer_interface.h b/test/pc/e2e/api/stats_observer_interface.h
new file mode 100644
index 0000000..40b4cc5
--- /dev/null
+++ b/test/pc/e2e/api/stats_observer_interface.h
@@ -0,0 +1,33 @@
+/*
+ *  Copyright (c) 2019 The WebRTC project authors. All Rights Reserved.
+ *
+ *  Use of this source code is governed by a BSD-style license
+ *  that can be found in the LICENSE file in the root of the source
+ *  tree. An additional intellectual property rights grant can be found
+ *  in the file PATENTS.  All contributing project authors may
+ *  be found in the AUTHORS file in the root of the source tree.
+ */
+
+#ifndef TEST_PC_E2E_API_STATS_OBSERVER_INTERFACE_H_
+#define TEST_PC_E2E_API_STATS_OBSERVER_INTERFACE_H_
+
+#include "absl/strings/string_view.h"
+#include "api/stats_types.h"
+
+namespace webrtc {
+namespace test {
+
+class StatsObserverInterface {
+ public:
+  virtual ~StatsObserverInterface() = default;
+
+  // Method called when stats reports are available for the PeerConnection
+  // identified by |pc_label|.
+  virtual void OnStatsReports(absl::string_view pc_label,
+                              const StatsReports& reports) = 0;
+};
+
+}  // namespace test
+}  // namespace webrtc
+
+#endif  // TEST_PC_E2E_API_STATS_OBSERVER_INTERFACE_H_