// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/autofill/core/common/autofill_internals/log_message.h" #include "base/logging.h" #include "base/notreached.h" #include "components/autofill/core/common/logging/log_buffer.h" namespace autofill { const char* LogMessageToString(LogMessage message) { … } const char* LogMessageValue(LogMessage message) { … } LogBuffer& operator<<(LogBuffer& buf, LogMessage message) { … } } // namespace autofill