OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_BASELINEFILE_H_ | 11 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_BASELINEFILE_H_ |
12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_BASELINEFILE_H_ | 12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_BASELINEFILE_H_ |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 #include "webrtc/modules/interface/module_common_types.h" | 15 #include "webrtc/modules/include/module_common_types.h" |
16 | 16 |
17 namespace webrtc { | 17 namespace webrtc { |
18 namespace testing { | 18 namespace testing { |
19 namespace bwe { | 19 namespace bwe { |
20 | 20 |
21 class BaseLineFileInterface { | 21 class BaseLineFileInterface { |
22 public: | 22 public: |
23 virtual ~BaseLineFileInterface() {} | 23 virtual ~BaseLineFileInterface() {} |
24 | 24 |
25 // Compare, or log, one estimate against the baseline file. | 25 // Compare, or log, one estimate against the baseline file. |
(...skipping 10 matching lines...) Expand all Loading... |
36 // |write_updated_file| is set, write logged estimates to a file with the same | 36 // |write_updated_file| is set, write logged estimates to a file with the same |
37 // name, living in the out/ directory. | 37 // name, living in the out/ directory. |
38 static BaseLineFileInterface* Create(const std::string& filename, | 38 static BaseLineFileInterface* Create(const std::string& filename, |
39 bool write_updated_file); | 39 bool write_updated_file); |
40 }; | 40 }; |
41 } // namespace bwe | 41 } // namespace bwe |
42 } // namespace testing | 42 } // namespace testing |
43 } // namespace webrtc | 43 } // namespace webrtc |
44 | 44 |
45 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_BASELINEFILE_H_ | 45 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_BASELINEFILE_H_ |
OLD | NEW |