Update code documentation for enum in EWK headers
[platform/framework/web/chromium-efl.git] / chrome / notification_helper / trace_util.h
1 // Copyright 2018 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_NOTIFICATION_HELPER_TRACE_UTIL_H_
6 #define CHROME_NOTIFICATION_HELPER_TRACE_UTIL_H_
7
8 #if defined(NDEBUG)
9 #define Trace(format, ...) ((void)0)
10 #else
11 #define Trace(format, ...) TraceImpl(format, ##__VA_ARGS__)
12 void TraceImpl(const wchar_t* format, ...);
13 #endif  // defined(NDEBUG)
14
15 #endif  // CHROME_NOTIFICATION_HELPER_TRACE_UTIL_H_