blob: b7ebeecb2b8d59b99d4a5232e720f445b0cc751a [file] [log] [blame]
// Copyright 2020 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/security_state/core/security_state.h"
#ifndef COMPONENTS_SECURITY_STATE_CONTENT_ANDROID_SECURITY_STATE_MODEL_DELEGATE_H_
#define COMPONENTS_SECURITY_STATE_CONTENT_ANDROID_SECURITY_STATE_MODEL_DELEGATE_H_
namespace content {
class WebContents;
} // namespace content
class SecurityStateModelDelegate {
public:
virtual ~SecurityStateModelDelegate() = default;
virtual security_state::SecurityLevel GetSecurityLevel(
content::WebContents* web_contents) const = 0;
};
#endif // COMPONENTS_SECURITY_STATE_CONTENT_ANDROID_SECURITY_STATE_MODEL_DELEGATE_H_