diff --git a/webrtc/system_wrappers/include/aligned_array.h b/webrtc/system_wrappers/include/aligned_array.h index a3a5911e36..7cd182c296 100644 --- a/webrtc/system_wrappers/include/aligned_array.h +++ b/webrtc/system_wrappers/include/aligned_array.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ALIGNED_ARRAY_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ALIGNED_ARRAY_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_ALIGNED_ARRAY_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_ALIGNED_ARRAY_ #include "webrtc/base/checks.h" #include "webrtc/system_wrappers/include/aligned_malloc.h" @@ -85,4 +85,4 @@ template class AlignedArray { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ALIGNED_ARRAY_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_ALIGNED_ARRAY_ diff --git a/webrtc/system_wrappers/include/aligned_malloc.h b/webrtc/system_wrappers/include/aligned_malloc.h index 5d343cde7c..277abec020 100644 --- a/webrtc/system_wrappers/include/aligned_malloc.h +++ b/webrtc/system_wrappers/include/aligned_malloc.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ALIGNED_MALLOC_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ALIGNED_MALLOC_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_ALIGNED_MALLOC_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_ALIGNED_MALLOC_H_ // The functions declared here // 1) Allocates block of aligned memory. @@ -56,4 +56,4 @@ struct AlignedFreeDeleter { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ALIGNED_MALLOC_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_ALIGNED_MALLOC_H_ diff --git a/webrtc/system_wrappers/include/asm_defines.h b/webrtc/system_wrappers/include/asm_defines.h index c2a688f00a..fe4c05effc 100644 --- a/webrtc/system_wrappers/include/asm_defines.h +++ b/webrtc/system_wrappers/include/asm_defines.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ASM_DEFINES_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ASM_DEFINES_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_ASM_DEFINES_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_ASM_DEFINES_H_ #if defined(__linux__) && defined(__ELF__) .section .note.GNU-stack,"",%progbits @@ -63,4 +63,4 @@ strheq \reg1, \reg2, \num .text -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ASM_DEFINES_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_ASM_DEFINES_H_ diff --git a/webrtc/system_wrappers/include/atomic32.h b/webrtc/system_wrappers/include/atomic32.h index 36ca144bda..78e649d8b6 100644 --- a/webrtc/system_wrappers/include/atomic32.h +++ b/webrtc/system_wrappers/include/atomic32.h @@ -12,8 +12,8 @@ // doing, use locks instead! :-) // // Note: assumes 32-bit (or higher) system -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ATOMIC32_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ATOMIC32_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_ATOMIC32_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_ATOMIC32_H_ #include @@ -63,4 +63,4 @@ class Atomic32 { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ATOMIC32_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_ATOMIC32_H_ diff --git a/webrtc/system_wrappers/include/clock.h b/webrtc/system_wrappers/include/clock.h index 14253ba560..f443057bea 100644 --- a/webrtc/system_wrappers/include/clock.h +++ b/webrtc/system_wrappers/include/clock.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CLOCK_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CLOCK_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CLOCK_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CLOCK_H_ #include "webrtc/base/scoped_ptr.h" #include "webrtc/system_wrappers/include/rw_lock_wrapper.h" @@ -81,4 +81,4 @@ class SimulatedClock : public Clock { }; // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CLOCK_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CLOCK_H_ diff --git a/webrtc/system_wrappers/include/compile_assert_c.h b/webrtc/system_wrappers/include/compile_assert_c.h index dbb5292d97..b402d7192d 100644 --- a/webrtc/system_wrappers/include/compile_assert_c.h +++ b/webrtc/system_wrappers/include/compile_assert_c.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_COMPILE_ASSERT_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_COMPILE_ASSERT_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_COMPILE_ASSERT_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_COMPILE_ASSERT_H_ #ifdef __cplusplus #error "Only use this for C files. For C++, use static_assert." @@ -21,4 +21,4 @@ // COMPILE_ASSERT(sizeof(foo) < 128); #define COMPILE_ASSERT(expression) switch (0) {case 0: case expression:;} -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_COMPILE_ASSERT_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_COMPILE_ASSERT_H_ diff --git a/webrtc/system_wrappers/include/condition_variable_wrapper.h b/webrtc/system_wrappers/include/condition_variable_wrapper.h index 151f00ece1..37ca30f036 100644 --- a/webrtc/system_wrappers/include/condition_variable_wrapper.h +++ b/webrtc/system_wrappers/include/condition_variable_wrapper.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CONDITION_VARIABLE_WRAPPER_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CONDITION_VARIABLE_WRAPPER_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CONDITION_VARIABLE_WRAPPER_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CONDITION_VARIABLE_WRAPPER_H_ namespace webrtc { @@ -39,4 +39,4 @@ class ConditionVariableWrapper { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CONDITION_VARIABLE_WRAPPER_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CONDITION_VARIABLE_WRAPPER_H_ diff --git a/webrtc/system_wrappers/include/cpu_features_wrapper.h b/webrtc/system_wrappers/include/cpu_features_wrapper.h index 5697c49164..9838d94e58 100644 --- a/webrtc/system_wrappers/include/cpu_features_wrapper.h +++ b/webrtc/system_wrappers/include/cpu_features_wrapper.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_FEATURES_WRAPPER_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_FEATURES_WRAPPER_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CPU_FEATURES_WRAPPER_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CPU_FEATURES_WRAPPER_H_ #if defined(__cplusplus) || defined(c_plusplus) extern "C" { @@ -48,4 +48,4 @@ extern uint64_t WebRtc_GetCPUFeaturesARM(void); } // extern "C" #endif -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_FEATURES_WRAPPER_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CPU_FEATURES_WRAPPER_H_ diff --git a/webrtc/system_wrappers/include/cpu_info.h b/webrtc/system_wrappers/include/cpu_info.h index 65888b8d32..3c00d33ed3 100644 --- a/webrtc/system_wrappers/include/cpu_info.h +++ b/webrtc/system_wrappers/include/cpu_info.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_INFO_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_INFO_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CPU_INFO_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CPU_INFO_H_ #include "webrtc/typedefs.h" @@ -25,4 +25,4 @@ class CpuInfo { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_INFO_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CPU_INFO_H_ diff --git a/webrtc/system_wrappers/include/critical_section_wrapper.h b/webrtc/system_wrappers/include/critical_section_wrapper.h index e93a249e25..7dd217e40d 100644 --- a/webrtc/system_wrappers/include/critical_section_wrapper.h +++ b/webrtc/system_wrappers/include/critical_section_wrapper.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CRITICAL_SECTION_WRAPPER_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CRITICAL_SECTION_WRAPPER_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CRITICAL_SECTION_WRAPPER_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CRITICAL_SECTION_WRAPPER_H_ // If the critical section is heavily contended it may be beneficial to use // read/write locks instead. @@ -51,4 +51,4 @@ class SCOPED_LOCKABLE CriticalSectionScoped { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CRITICAL_SECTION_WRAPPER_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_CRITICAL_SECTION_WRAPPER_H_ diff --git a/webrtc/system_wrappers/include/data_log.h b/webrtc/system_wrappers/include/data_log.h index cf095674a3..f6cad88e96 100644 --- a/webrtc/system_wrappers/include/data_log.h +++ b/webrtc/system_wrappers/include/data_log.h @@ -28,8 +28,8 @@ // // Table names and column names are case sensitive. -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_DATA_LOG_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_DATA_LOG_H_ #include @@ -116,4 +116,4 @@ class DataLog { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_DATA_LOG_H_ diff --git a/webrtc/system_wrappers/include/data_log_c.h b/webrtc/system_wrappers/include/data_log_c.h index 4ff8329c85..d31e4d972e 100644 --- a/webrtc/system_wrappers/include/data_log_c.h +++ b/webrtc/system_wrappers/include/data_log_c.h @@ -12,8 +12,8 @@ // 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_ +#ifndef SRC_SYSTEM_WRAPPERS_INCLUDE_DATA_LOG_C_H_ +#define SRC_SYSTEM_WRAPPERS_INCLUDE_DATA_LOG_C_H_ #include // size_t @@ -82,4 +82,4 @@ int WebRtcDataLog_NextRow(const char* table_name); } // end of extern "C" #endif -#endif // SRC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_C_H_ // NOLINT +#endif // SRC_SYSTEM_WRAPPERS_INCLUDE_DATA_LOG_C_H_ // NOLINT diff --git a/webrtc/system_wrappers/include/data_log_impl.h b/webrtc/system_wrappers/include/data_log_impl.h index 56d98f891e..1932a345b6 100644 --- a/webrtc/system_wrappers/include/data_log_impl.h +++ b/webrtc/system_wrappers/include/data_log_impl.h @@ -14,8 +14,8 @@ // 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_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_DATA_LOG_IMPL_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_DATA_LOG_IMPL_H_ #include #include @@ -152,4 +152,4 @@ class DataLogImpl { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_IMPL_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_DATA_LOG_IMPL_H_ diff --git a/webrtc/system_wrappers/include/event_tracer.h b/webrtc/system_wrappers/include/event_tracer.h index 9b1eb1eb92..8941251eca 100644 --- a/webrtc/system_wrappers/include/event_tracer.h +++ b/webrtc/system_wrappers/include/event_tracer.h @@ -23,11 +23,11 @@ // // Parameters for the above two functions are described in trace_event.h. -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_EVENT_TRACER_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_EVENT_TRACER_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_EVENT_TRACER_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_EVENT_TRACER_H_ // This file has moved. // TODO(tommi): Delete after removing dependencies and updating Chromium. #include "webrtc/base/event_tracer.h" -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_EVENT_TRACER_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_EVENT_TRACER_H_ diff --git a/webrtc/system_wrappers/include/event_wrapper.h b/webrtc/system_wrappers/include/event_wrapper.h index bd12eef908..cc3722bd6b 100644 --- a/webrtc/system_wrappers/include/event_wrapper.h +++ b/webrtc/system_wrappers/include/event_wrapper.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_EVENT_WRAPPER_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_EVENT_WRAPPER_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_EVENT_WRAPPER_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_EVENT_WRAPPER_H_ namespace webrtc { enum EventTypeWrapper { @@ -67,4 +67,4 @@ class EventTimerWrapper : public EventWrapper { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_EVENT_WRAPPER_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_EVENT_WRAPPER_H_ diff --git a/webrtc/system_wrappers/include/field_trial.h b/webrtc/system_wrappers/include/field_trial.h index 2af083cdac..62fbfd1a50 100644 --- a/webrtc/system_wrappers/include/field_trial.h +++ b/webrtc/system_wrappers/include/field_trial.h @@ -8,8 +8,8 @@ // be found in the AUTHORS file in the root of the source tree. // -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FIELD_TRIAL_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FIELD_TRIAL_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_FIELD_TRIAL_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_FIELD_TRIAL_H_ #include @@ -65,4 +65,4 @@ std::string FindFullName(const std::string& name); } // namespace field_trial } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FIELD_TRIAL_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_FIELD_TRIAL_H_ diff --git a/webrtc/system_wrappers/include/field_trial_default.h b/webrtc/system_wrappers/include/field_trial_default.h index fafe550dcc..d098ea1d91 100644 --- a/webrtc/system_wrappers/include/field_trial_default.h +++ b/webrtc/system_wrappers/include/field_trial_default.h @@ -8,8 +8,8 @@ // be found in the AUTHORS file in the root of the source tree. // -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FIELD_TRIAL_DEFAULT_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FIELD_TRIAL_DEFAULT_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_FIELD_TRIAL_DEFAULT_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_FIELD_TRIAL_DEFAULT_H_ namespace webrtc { namespace field_trial { @@ -23,4 +23,4 @@ void InitFieldTrialsFromString(const char* trials_string); } // namespace field_trial } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FIELD_TRIAL_DEFAULT_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_FIELD_TRIAL_DEFAULT_H_ diff --git a/webrtc/system_wrappers/include/file_wrapper.h b/webrtc/system_wrappers/include/file_wrapper.h index 8f4e09f9c9..b32a62f2f9 100644 --- a/webrtc/system_wrappers/include/file_wrapper.h +++ b/webrtc/system_wrappers/include/file_wrapper.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FILE_WRAPPER_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FILE_WRAPPER_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_FILE_WRAPPER_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_FILE_WRAPPER_H_ #include #include @@ -75,4 +75,4 @@ class FileWrapper : public InStream, public OutStream { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FILE_WRAPPER_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_FILE_WRAPPER_H_ diff --git a/webrtc/system_wrappers/include/logcat_trace_context.h b/webrtc/system_wrappers/include/logcat_trace_context.h index 0b74734043..8bb01d8102 100644 --- a/webrtc/system_wrappers/include/logcat_trace_context.h +++ b/webrtc/system_wrappers/include/logcat_trace_context.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_LOGCAT_TRACE_CONTEXT_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_LOGCAT_TRACE_CONTEXT_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_LOGCAT_TRACE_CONTEXT_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_LOGCAT_TRACE_CONTEXT_H_ #include "webrtc/system_wrappers/include/trace.h" @@ -32,4 +32,4 @@ class LogcatTraceContext : public webrtc::TraceCallback { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_LOGCAT_TRACE_CONTEXT_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_LOGCAT_TRACE_CONTEXT_H_ diff --git a/webrtc/system_wrappers/include/logging.h b/webrtc/system_wrappers/include/logging.h index d95c53e176..2b53f4f1d1 100644 --- a/webrtc/system_wrappers/include/logging.h +++ b/webrtc/system_wrappers/include/logging.h @@ -48,8 +48,8 @@ // LOG_FERR1(LS_WARNING, Foo, bar); // } -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_LOGGING_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_LOGGING_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_LOGGING_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_LOGGING_H_ #include @@ -158,4 +158,4 @@ class LogMessageVoidify { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_LOGGING_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_LOGGING_H_ diff --git a/webrtc/system_wrappers/include/metrics.h b/webrtc/system_wrappers/include/metrics.h index 7ebe3bde3d..2e6e7b7b6b 100644 --- a/webrtc/system_wrappers/include/metrics.h +++ b/webrtc/system_wrappers/include/metrics.h @@ -8,8 +8,8 @@ // be found in the AUTHORS file in the root of the source tree. // -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_METRICS_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_METRICS_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_METRICS_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_METRICS_H_ #include @@ -135,5 +135,5 @@ void HistogramAdd( } // namespace metrics } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_METRICS_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_METRICS_H_ diff --git a/webrtc/system_wrappers/include/ref_count.h b/webrtc/system_wrappers/include/ref_count.h index 8ca06cdf6c..3dd335a8da 100644 --- a/webrtc/system_wrappers/include/ref_count.h +++ b/webrtc/system_wrappers/include/ref_count.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef SYSTEM_WRAPPERS_INTERFACE_REF_COUNT_H_ -#define SYSTEM_WRAPPERS_INTERFACE_REF_COUNT_H_ +#ifndef SYSTEM_WRAPPERS_INCLUDE_REF_COUNT_H_ +#define SYSTEM_WRAPPERS_INCLUDE_REF_COUNT_H_ #include "webrtc/system_wrappers/include/atomic32.h" @@ -79,4 +79,4 @@ class RefCountImpl : public T { } // namespace webrtc -#endif // SYSTEM_WRAPPERS_INTERFACE_REF_COUNT_H_ +#endif // SYSTEM_WRAPPERS_INCLUDE_REF_COUNT_H_ diff --git a/webrtc/system_wrappers/include/rtp_to_ntp.h b/webrtc/system_wrappers/include/rtp_to_ntp.h index dfc25cd9e9..0c91928626 100644 --- a/webrtc/system_wrappers/include/rtp_to_ntp.h +++ b/webrtc/system_wrappers/include/rtp_to_ntp.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef SYSTEM_WRAPPERS_INTERFACE_RTP_TO_NTP_H_ -#define SYSTEM_WRAPPERS_INTERFACE_RTP_TO_NTP_H_ +#ifndef SYSTEM_WRAPPERS_INCLUDE_RTP_TO_NTP_H_ +#define SYSTEM_WRAPPERS_INCLUDE_RTP_TO_NTP_H_ #include @@ -47,4 +47,4 @@ int CheckForWrapArounds(uint32_t rtp_timestamp, uint32_t rtcp_rtp_timestamp); } // namespace webrtc -#endif // SYSTEM_WRAPPERS_INTERFACE_RTP_TO_NTP_H_ +#endif // SYSTEM_WRAPPERS_INCLUDE_RTP_TO_NTP_H_ diff --git a/webrtc/system_wrappers/include/rw_lock_wrapper.h b/webrtc/system_wrappers/include/rw_lock_wrapper.h index dbe6d6c7c0..751b6a1df5 100644 --- a/webrtc/system_wrappers/include/rw_lock_wrapper.h +++ b/webrtc/system_wrappers/include/rw_lock_wrapper.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_RW_LOCK_WRAPPER_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_RW_LOCK_WRAPPER_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_RW_LOCK_WRAPPER_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_RW_LOCK_WRAPPER_H_ #include "webrtc/base/thread_annotations.h" @@ -65,4 +65,4 @@ class SCOPED_LOCKABLE WriteLockScoped { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_RW_LOCK_WRAPPER_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_RW_LOCK_WRAPPER_H_ diff --git a/webrtc/system_wrappers/include/scoped_vector.h b/webrtc/system_wrappers/include/scoped_vector.h index 1e89a9d245..7336d98a86 100644 --- a/webrtc/system_wrappers/include/scoped_vector.h +++ b/webrtc/system_wrappers/include/scoped_vector.h @@ -10,8 +10,8 @@ // Borrowed from Chromium's src/base/memory/scoped_vector.h. -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SCOPED_VECTOR_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SCOPED_VECTOR_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_SCOPED_VECTOR_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_SCOPED_VECTOR_H_ #include @@ -154,4 +154,4 @@ class ScopedVector { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SCOPED_VECTOR_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_SCOPED_VECTOR_H_ diff --git a/webrtc/system_wrappers/include/sleep.h b/webrtc/system_wrappers/include/sleep.h index c0205bf085..e7ed8b32b8 100644 --- a/webrtc/system_wrappers/include/sleep.h +++ b/webrtc/system_wrappers/include/sleep.h @@ -9,8 +9,8 @@ */ // An OS-independent sleep function. -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SLEEP_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SLEEP_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_SLEEP_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_SLEEP_H_ namespace webrtc { @@ -21,4 +21,4 @@ void SleepMs(int msecs); } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SLEEP_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_SLEEP_H_ diff --git a/webrtc/system_wrappers/include/sort.h b/webrtc/system_wrappers/include/sort.h index da6ff8d52e..5bf2afa8a5 100644 --- a/webrtc/system_wrappers/include/sort.h +++ b/webrtc/system_wrappers/include/sort.h @@ -10,8 +10,8 @@ // Generic unstable sorting routines. -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SORT_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SORT_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_SORT_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_SORT_H_ #include "webrtc/common_types.h" #include "webrtc/typedefs.h" @@ -62,4 +62,4 @@ int32_t KeySort(void* data, void* key, uint32_t num_of_elements, } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SORT_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_SORT_H_ diff --git a/webrtc/system_wrappers/include/static_instance.h b/webrtc/system_wrappers/include/static_instance.h index fd986b821d..41946d9230 100644 --- a/webrtc/system_wrappers/include/static_instance.h +++ b/webrtc/system_wrappers/include/static_instance.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_STATIC_INSTANCE_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_STATIC_INSTANCE_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_STATIC_INSTANCE_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_STATIC_INSTANCE_H_ #include @@ -150,4 +150,4 @@ static T* GetStaticInstance(CountOperation count_operation) { } // namspace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_STATIC_INSTANCE_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_STATIC_INSTANCE_H_ diff --git a/webrtc/system_wrappers/include/stl_util.h b/webrtc/system_wrappers/include/stl_util.h index ebe855fb10..b7a702113f 100644 --- a/webrtc/system_wrappers/include/stl_util.h +++ b/webrtc/system_wrappers/include/stl_util.h @@ -10,8 +10,8 @@ // Borrowed from Chromium's src/base/stl_util.h. -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_STL_UTIL_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_STL_UTIL_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_STL_UTIL_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_STL_UTIL_H_ #include #include @@ -262,4 +262,4 @@ bool STLIncludes(const Arg1& a1, const Arg2& a2) { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_STL_UTIL_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_STL_UTIL_H_ diff --git a/webrtc/system_wrappers/include/stringize_macros.h b/webrtc/system_wrappers/include/stringize_macros.h index ab8c43d4e2..9c8e7e9120 100644 --- a/webrtc/system_wrappers/include/stringize_macros.h +++ b/webrtc/system_wrappers/include/stringize_macros.h @@ -15,8 +15,8 @@ // symbols (or their output) and manipulating preprocessor symbols // that define strings. -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_STRINGIZE_MACROS_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_STRINGIZE_MACROS_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_STRINGIZE_MACROS_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_STRINGIZE_MACROS_H_ // This is not very useful as it does not expand defined symbols if // called directly. Use its counterpart without the _NO_EXPANSION @@ -35,4 +35,4 @@ // STRINGIZE(B(y)) produces "myobj->FunctionCall(y)" #define STRINGIZE(x) STRINGIZE_NO_EXPANSION(x) -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_STRINGIZE_MACROS_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_STRINGIZE_MACROS_H_ diff --git a/webrtc/system_wrappers/include/thread_wrapper.h b/webrtc/system_wrappers/include/thread_wrapper.h index 742056198a..d475302139 100644 --- a/webrtc/system_wrappers/include/thread_wrapper.h +++ b/webrtc/system_wrappers/include/thread_wrapper.h @@ -13,8 +13,8 @@ // Note: The callback function is expected to return every 2 seconds or more // often. -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_THREAD_WRAPPER_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_THREAD_WRAPPER_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_THREAD_WRAPPER_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_THREAD_WRAPPER_H_ #if defined(WEBRTC_WIN) #include @@ -92,4 +92,4 @@ class ThreadWrapper { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_THREAD_WRAPPER_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_THREAD_WRAPPER_H_ diff --git a/webrtc/system_wrappers/include/tick_util.h b/webrtc/system_wrappers/include/tick_util.h index e0f5861fa7..46d62cce58 100644 --- a/webrtc/system_wrappers/include/tick_util.h +++ b/webrtc/system_wrappers/include/tick_util.h @@ -11,8 +11,8 @@ // System independant wrapper for polling elapsed time in ms and us. // The implementation works in the tick domain which can be mapped over to the // time domain. -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_TICK_UTIL_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_TICK_UTIL_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_TICK_UTIL_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_TICK_UTIL_H_ #if _WIN32 // Note: The Windows header must always be included before mmsystem.h @@ -294,4 +294,4 @@ inline TickInterval& TickInterval::operator-=(const TickInterval& rhs) { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_TICK_UTIL_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_TICK_UTIL_H_ diff --git a/webrtc/system_wrappers/include/timestamp_extrapolator.h b/webrtc/system_wrappers/include/timestamp_extrapolator.h index b8a8b05d97..d9c5c6fb37 100644 --- a/webrtc/system_wrappers/include/timestamp_extrapolator.h +++ b/webrtc/system_wrappers/include/timestamp_extrapolator.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef SYSTEM_WRAPPERS_INTERFACE_TIMESTAMP_EXTRAPOLATOR_H_ -#define SYSTEM_WRAPPERS_INTERFACE_TIMESTAMP_EXTRAPOLATOR_H_ +#ifndef SYSTEM_WRAPPERS_INCLUDE_TIMESTAMP_EXTRAPOLATOR_H_ +#define SYSTEM_WRAPPERS_INCLUDE_TIMESTAMP_EXTRAPOLATOR_H_ #include "webrtc/system_wrappers/include/rw_lock_wrapper.h" #include "webrtc/typedefs.h" @@ -53,4 +53,4 @@ private: } // namespace webrtc -#endif // SYSTEM_WRAPPERS_INTERFACE_TIMESTAMP_EXTRAPOLATOR_H_ +#endif // SYSTEM_WRAPPERS_INCLUDE_TIMESTAMP_EXTRAPOLATOR_H_ diff --git a/webrtc/system_wrappers/include/trace.h b/webrtc/system_wrappers/include/trace.h index e63b603d1b..25a3d746c4 100644 --- a/webrtc/system_wrappers/include/trace.h +++ b/webrtc/system_wrappers/include/trace.h @@ -13,8 +13,8 @@ * messages. Apply filtering to avoid that. */ -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_TRACE_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_TRACE_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_TRACE_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_TRACE_H_ #include "webrtc/common_types.h" #include "webrtc/typedefs.h" @@ -89,4 +89,4 @@ class Trace { } // namespace webrtc -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_TRACE_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_TRACE_H_ diff --git a/webrtc/system_wrappers/include/utf_util_win.h b/webrtc/system_wrappers/include/utf_util_win.h index cc48fd254d..0e3f2d01c6 100644 --- a/webrtc/system_wrappers/include/utf_util_win.h +++ b/webrtc/system_wrappers/include/utf_util_win.h @@ -10,8 +10,8 @@ // Conversion functions for UTF-8 and UTF-16 strings on Windows. // Duplicated from talk/base/win32.h. -#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_UTF_UTIL_H_ -#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_UTF_UTIL_H_ +#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_UTF_UTIL_H_ +#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_UTF_UTIL_H_ #ifdef WIN32 #include @@ -54,4 +54,4 @@ inline std::string ToUtf8(const std::wstring& wstr) { } // namespace webrtc #endif // WIN32 -#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_UTF_UTIL_H_ +#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_UTF_UTIL_H_