// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_VALIDATION_ERRORS_H_ #define MOJO_PUBLIC_CPP_BINDINGS_LIB_VALIDATION_ERRORS_H_ #include "base/component_export.h" #include "base/functional/callback.h" #include "base/logging.h" namespace mojo { class Message; internal // namespace internal } // namespace mojo // In debug build, logs a serialization warning if |condition| evaluates to // true: // - if there is a SerializationWarningObserverForTesting object alive, // records |error| in it; // - otherwise, logs a fatal-level message. // |error| is the validation error that will be triggered by the receiver // of the serialzation result. // // In non-debug build, does nothing (not even compiling |condition|). #define MOJO_INTERNAL_DLOG_SERIALIZATION_WARNING(condition, error, \ description) … #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_VALIDATION_ERRORS_H_