#ifndef COMPONENTS_CLIENT_HINTS_BROWSER_IN_MEMORY_CLIENT_HINTS_CONTROLLER_DELEGATE_H_
#define COMPONENTS_CLIENT_HINTS_BROWSER_IN_MEMORY_CLIENT_HINTS_CONTROLLER_DELEGATE_H_
#include <map>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/sequence_checker.h"
#include "content/public/browser/client_hints_controller_delegate.h"
#include "third_party/blink/public/common/user_agent/user_agent_metadata.h"
namespace blink {
class EnabledClientHints;
}
namespace network {
class NetworkQualityTracker;
}
namespace url {
class Origin;
}
namespace client_hints {
class InMemoryClientHintsControllerDelegate final
: public content::ClientHintsControllerDelegate { … };
}
#endif