diff --git a/webrtc/system_wrappers/interface/data_log.h b/webrtc/system_wrappers/interface/data_log.h index 6fc1d64495..9608f2c420 100644 --- a/webrtc/system_wrappers/interface/data_log.h +++ b/webrtc/system_wrappers/interface/data_log.h @@ -8,34 +8,32 @@ * be found in the AUTHORS file in the root of the source tree. */ -/* - * This singleton can be used for logging data for offline processing. Data - * logged with it can conveniently be parsed and processed with e.g. Matlab. - * - * Following is an example of the log file format, starting with the header - * row at line 1, and the data rows following. - * col1,col2,col3,multi-value-col4[3],,,col5 - * 123,10.2,-243,1,2,3,100 - * 241,12.3,233,1,2,3,200 - * 13,16.4,-13,1,2,3,300 - * - * As can be seen in the example, a multi-value-column is specified with the - * name followed the number of elements it contains. This followed by - * number of elements - 1 empty columns. - * - * Without multi-value-columns this format can be natively by Matlab. With - * multi-value-columns a small Matlab script is needed, available at - * trunk/tools/matlab/parseLog.m. - * - * Table names and column names are case sensitive. - */ +// This singleton can be used for logging data for offline processing. Data +// logged with it can conveniently be parsed and processed with e.g. Matlab. +// +// Following is an example of the log file format, starting with the header +// row at line 1, and the data rows following. +// col1,col2,col3,multi-value-col4[3],,,col5 +// 123,10.2,-243,1,2,3,100 +// 241,12.3,233,1,2,3,200 +// 13,16.4,-13,1,2,3,300 +// +// As can be seen in the example, a multi-value-column is specified with the +// name followed the number of elements it contains. This followed by +// number of elements - 1 empty columns. +// +// Without multi-value-columns this format can be natively by Matlab. With +// multi-value-columns a small Matlab script is needed, available at +// trunk/tools/matlab/parseLog.m. +// +// Table names and column names are case sensitive. #ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_ #define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_ #include -#include "data_log_impl.h" +#include "webrtc/system_wrappers/interface/data_log_impl.h" namespace webrtc { diff --git a/webrtc/system_wrappers/interface/data_log_c.h b/webrtc/system_wrappers/interface/data_log_c.h index fffbb4fd86..557e2cdab3 100644 --- a/webrtc/system_wrappers/interface/data_log_c.h +++ b/webrtc/system_wrappers/interface/data_log_c.h @@ -8,27 +8,23 @@ * be found in the AUTHORS file in the root of the source tree. */ -/* - * This is a pure C wrapper of the DataLog class. The functions are directly - * mapped here except for InsertCell as C does not support templates. - * See data_log.h for a description of the functions. - */ +// This is a pure C wrapper of the DataLog class. The functions are directly +// mapped here except for InsertCell as C does not support templates. +// See data_log.h for a description of the functions. #ifndef SRC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_C_H_ #define SRC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_C_H_ -#include /* size_t */ +#include // size_t -#include "typedefs.h" /* NOLINT(build/include) */ +#include "webrtc/typedefs.h" // NOLINT(build/include) #ifdef __cplusplus extern "C" { #endif -/* - * All char* parameters in this file are expected to be null-terminated - * character sequences. - */ +// All char* parameters in this file are expected to be null-terminated +// character sequences. int WebRtcDataLog_CreateLog(); void WebRtcDataLog_ReturnLog(); char* WebRtcDataLog_Combine(char* combined_name, size_t combined_len, @@ -83,7 +79,7 @@ int WebRtcDataLog_InsertArray_int64(const char* table_name, int WebRtcDataLog_NextRow(const char* table_name); #ifdef __cplusplus -} /* end of extern "C" */ +} // end of extern "C" #endif -#endif /* SRC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_C_H_ */ /* NOLINT */ +#endif // SRC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_C_H_ // NOLINT diff --git a/webrtc/system_wrappers/interface/data_log_impl.h b/webrtc/system_wrappers/interface/data_log_impl.h index cef4964534..0e5feef898 100644 --- a/webrtc/system_wrappers/interface/data_log_impl.h +++ b/webrtc/system_wrappers/interface/data_log_impl.h @@ -8,14 +8,12 @@ * be found in the AUTHORS file in the root of the source tree. */ -/* - * This file contains the helper classes for the DataLog APIs. See data_log.h - * for the APIs. - * - * These classes are helper classes used for logging data for offline - * processing. Data logged with these classes can conveniently be parsed and - * processed with e.g. Matlab. - */ +// This file contains the helper classes for the DataLog APIs. See data_log.h +// for the APIs. +// +// These classes are helper classes used for logging data for offline +// processing. Data logged with these classes can conveniently be parsed and +// processed with e.g. Matlab. #ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_IMPL_H_ #define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_IMPL_H_ @@ -24,8 +22,8 @@ #include #include -#include "scoped_ptr.h" -#include "typedefs.h" +#include "webrtc/system_wrappers/interface/scoped_ptr.h" +#include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/system_wrappers/source/data_log.cc b/webrtc/system_wrappers/source/data_log.cc index f1238969a1..9bf965004e 100644 --- a/webrtc/system_wrappers/source/data_log.cc +++ b/webrtc/system_wrappers/source/data_log.cc @@ -8,18 +8,17 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "data_log.h" +#include "webrtc/system_wrappers/interface/data_log.h" #include - #include #include -#include "critical_section_wrapper.h" -#include "event_wrapper.h" -#include "file_wrapper.h" -#include "rw_lock_wrapper.h" -#include "thread_wrapper.h" +#include "webrtc/system_wrappers/interface/critical_section_wrapper.h" +#include "webrtc/system_wrappers/interface/event_wrapper.h" +#include "webrtc/system_wrappers/interface/file_wrapper.h" +#include "webrtc/system_wrappers/interface/rw_lock_wrapper.h" +#include "webrtc/system_wrappers/interface/thread_wrapper.h" namespace webrtc { diff --git a/webrtc/system_wrappers/source/data_log_c.cc b/webrtc/system_wrappers/source/data_log_c.cc index f8d7efd08c..a11d545fc0 100644 --- a/webrtc/system_wrappers/source/data_log_c.cc +++ b/webrtc/system_wrappers/source/data_log_c.cc @@ -8,15 +8,13 @@ * be found in the AUTHORS file in the root of the source tree. */ -/* - * This is the pure C wrapper of the DataLog class. - */ +// This is the pure C wrapper of the DataLog class. -#include "system_wrappers/interface/data_log_c.h" +#include "webrtc/system_wrappers/interface/data_log_c.h" #include -#include "system_wrappers/interface/data_log.h" +#include "webrtc/system_wrappers/interface/data_log.h" extern "C" int WebRtcDataLog_CreateLog() { return webrtc::DataLog::CreateLog(); diff --git a/webrtc/system_wrappers/source/data_log_c_helpers_unittest.c b/webrtc/system_wrappers/source/data_log_c_helpers_unittest.c index e78a0e3563..524bd24e1c 100644 --- a/webrtc/system_wrappers/source/data_log_c_helpers_unittest.c +++ b/webrtc/system_wrappers/source/data_log_c_helpers_unittest.c @@ -8,13 +8,13 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "system_wrappers/source/data_log_c_helpers_unittest.h" +#include "webrtc/system_wrappers/source/data_log_c_helpers_unittest.h" #include -#include #include +#include -#include "system_wrappers/interface/data_log_c.h" +#include "webrtc/system_wrappers/interface/data_log_c.h" enum { kTestArrayLen = 4 }; static const char kTableName[] = "c_wrapper_table"; @@ -31,7 +31,7 @@ int WebRtcDataLogCHelper_TestReturnLog() { } int WebRtcDataLogCHelper_TestCombine() { - const int kOutLen = strlen(kTableName) + 4; /* Room for "_17" + '\0' */ + const int kOutLen = strlen(kTableName) + 4; // Room for "_17" + '\0' char* combined_name = malloc(kOutLen * sizeof(char)); char* out_ptr = WebRtcDataLog_Combine(combined_name, kOutLen, kTableName, 17); int return_code = 0; diff --git a/webrtc/system_wrappers/source/data_log_helpers_unittest.cc b/webrtc/system_wrappers/source/data_log_helpers_unittest.cc index 94b4d6ef59..3e430c9578 100644 --- a/webrtc/system_wrappers/source/data_log_helpers_unittest.cc +++ b/webrtc/system_wrappers/source/data_log_helpers_unittest.cc @@ -8,9 +8,10 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "webrtc/system_wrappers/interface/data_log.h" + #include -#include "data_log.h" #include "gtest/gtest.h" using ::webrtc::DataLog; diff --git a/webrtc/system_wrappers/source/data_log_no_op.cc b/webrtc/system_wrappers/source/data_log_no_op.cc index bedc82a59c..f5b0ea855f 100644 --- a/webrtc/system_wrappers/source/data_log_no_op.cc +++ b/webrtc/system_wrappers/source/data_log_no_op.cc @@ -8,7 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "data_log.h" +#include "webrtc/system_wrappers/interface/data_log.h" #include diff --git a/webrtc/system_wrappers/source/data_log_unittest.cc b/webrtc/system_wrappers/source/data_log_unittest.cc index c4d6772307..ddd00360f7 100644 --- a/webrtc/system_wrappers/source/data_log_unittest.cc +++ b/webrtc/system_wrappers/source/data_log_unittest.cc @@ -8,13 +8,14 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "webrtc/system_wrappers/interface/data_log.h" + #include #include -#include "system_wrappers/interface/data_log.h" -#include "system_wrappers/interface/data_log_c.h" -#include "system_wrappers/source/data_log_c_helpers_unittest.h" #include "gtest/gtest.h" +#include "webrtc/system_wrappers/interface/data_log_c.h" +#include "webrtc/system_wrappers/source/data_log_c_helpers_unittest.h" using ::webrtc::DataLog; @@ -257,9 +258,9 @@ TEST(TestDataLog, VerifyMultipleTables) { kNumberOfRows), 1); expected["timestamp,"] = ExpectedValues( - std::vector(string_timestamp, - string_timestamp + - kNumberOfRows), + std::vector(string_timestamp, + string_timestamp + + kNumberOfRows), 1); ASSERT_EQ(DataLogParser::VerifyTable(table, expected), 0); fclose(table); diff --git a/webrtc/system_wrappers/source/data_log_unittest_disabled.cc b/webrtc/system_wrappers/source/data_log_unittest_disabled.cc index 9d630b6ba5..583bde64e4 100644 --- a/webrtc/system_wrappers/source/data_log_unittest_disabled.cc +++ b/webrtc/system_wrappers/source/data_log_unittest_disabled.cc @@ -8,7 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "system_wrappers/interface/data_log.h" +#include "webrtc/system_wrappers/interface/data_log.h" #include