From 1843664f2af609e90a71e4a6bfc22bbb1728991e Mon Sep 17 00:00:00 2001 From: "henrik.lundin@webrtc.org" Date: Mon, 10 Oct 2011 09:56:52 +0000 Subject: [PATCH] DataLog: Changing from common_types to typedefs The file common_types.h cannot be used in data_log_c.h, since the latter is a pure C header file, and common_types.h is not. Changing to typedefs.h instead. Review URL: http://webrtc-codereview.appspot.com/216001 git-svn-id: http://webrtc.googlecode.com/svn/trunk@719 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/system_wrappers/interface/data_log_c.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/system_wrappers/interface/data_log_c.h b/src/system_wrappers/interface/data_log_c.h index a3566ea377..fffbb4fd86 100644 --- a/src/system_wrappers/interface/data_log_c.h +++ b/src/system_wrappers/interface/data_log_c.h @@ -18,7 +18,8 @@ #define SRC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_C_H_ #include /* size_t */ -#include "common_types.h" + +#include "typedefs.h" /* NOLINT(build/include) */ #ifdef __cplusplus extern "C" { @@ -85,4 +86,4 @@ int WebRtcDataLog_NextRow(const char* table_name); } /* end of extern "C" */ #endif -#endif /* SRC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_C_H_ */ +#endif /* SRC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_C_H_ */ /* NOLINT */