#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_LOGGING_LOG_ROUTER_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_LOGGING_LOG_ROUTER_H_
#include <string>
#include <vector>
#include "base/observer_list.h"
#include "base/scoped_observation_traits.h"
#include "base/values.h"
#include "components/autofill/core/browser/logging/text_log_receiver.h"
#include "components/keyed_service/core/keyed_service.h"
namespace autofill {
class RoutingLogManager;
class LogReceiver;
class LogRouter : public KeyedService { … };
}
namespace base {
template <>
struct ScopedObservationTraits<autofill::LogRouter, autofill::LogReceiver> { … };
}
#endif