Ran google3 clang-format on cdm source.

Merge from http://go/wvgerrit/144969

Test: build
  m android.hardware.drm-service.widevine -j128

Test: atest VtsAidlHalDrmTargetTest

Bug: 216720425
Change-Id: Ie1872d2a48e3b3645853e9831816afecffac747f
This commit is contained in:
Edwin
2022-02-03 20:26:21 -08:00
parent f4d6ef3858
commit 6112060529
10 changed files with 41 additions and 27 deletions

View File

@@ -11,11 +11,11 @@
* at the top of your source file) to change that behavior.
*/
#ifndef LOG_NDEBUG
#ifdef NDEBUG
#define LOG_NDEBUG 1
#else
#define LOG_NDEBUG 0
#endif
# ifdef NDEBUG
# define LOG_NDEBUG 1
# else
# define LOG_NDEBUG 0
# endif
#endif
#define LOG_TAG "WVCdm"
@@ -24,9 +24,9 @@
#include "log.h"
#ifdef IS_HIDL
#include <hwbinder/IPCThreadState.h>
# include <hwbinder/IPCThreadState.h>
#else // AIDL is the default
#include <binder/IPCThreadState.h>
# include <binder/IPCThreadState.h>
#endif
#include <stdarg.h>
#include <stdio.h>