chromium/components/safe_browsing/content/browser/password_protection/request_canceler_content.h

// 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.

#ifndef COMPONENTS_SAFE_BROWSING_CONTENT_BROWSER_PASSWORD_PROTECTION_REQUEST_CANCELER_CONTENT_H_
#define COMPONENTS_SAFE_BROWSING_CONTENT_BROWSER_PASSWORD_PROTECTION_REQUEST_CANCELER_CONTENT_H_

#include "components/safe_browsing/core/browser/password_protection/request_canceler.h"
#include "content/public/browser/web_contents_observer.h"

namespace safe_browsing {

class RequestCancelerContent : public RequestCanceler,
                               public content::WebContentsObserver {};

}  // namespace safe_browsing

#endif  // COMPONENTS_SAFE_BROWSING_CONTENT_BROWSER_PASSWORD_PROTECTION_REQUEST_CANCELER_CONTENT_H_