// Copyright 2020 Google LLC. All Rights Reserved. #ifndef BASE_CHECK_H_ #define BASE_CHECK_H_ // Chromium has split CHECK/DCHECK out of logging.h into it's own header. // However, it's all still together in the GLOG header, so just include // it. This may cause problems when importing into Alcatraz as code using // anyone of these headers gets all the functions, not just the ones // represented by this header. #include "base/logging.h" #endif // BASE_CHECK_H_