// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_HOST_NATIVE_MESSAGING_LOG_MESSAGE_HANDLER_H_ #define REMOTING_HOST_NATIVE_MESSAGING_LOG_MESSAGE_HANDLER_H_ #include <stddef.h> #include <memory> #include "base/functional/callback.h" #include "base/logging.h" #include "base/memory/weak_ptr.h" #include "base/values.h" namespace base { class SingleThreadTaskRunner; } namespace remoting { // Helper class for logging::SetLogMessageHandler to deliver log messages to // a consistent thread in a thread-safe way and in a format suitable for sending // over a Native Messaging channel. class LogMessageHandler { … }; } // namespace remoting #endif // REMOTING_HOST_NATIVE_MESSAGING_LOG_MESSAGE_HANDLER_H_