Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/test/bwe_test_baselinefile.h

Issue 1417683006: modules: more interface -> include renames (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix last incorrectly wrapped pragma message Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698