chromium/chrome/browser/page_load_metrics/observers/formfill_page_load_metrics_observer.h

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_FORMFILL_PAGE_LOAD_METRICS_OBSERVER_H_
#define CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_FORMFILL_PAGE_LOAD_METRICS_OBSERVER_H_

#include "components/page_load_metrics/browser/page_load_metrics_observer.h"

// This class is responsible for:
// 1. observing heuristically detected fields with filled user data, and storing
// the detection to WebsiteSettings.
// 2. logging metrics if fields with filled user data were previously detected
// on the site.
class FormfillPageLoadMetricsObserver
    : public page_load_metrics::PageLoadMetricsObserver {};

#endif  // CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_FORMFILL_PAGE_LOAD_METRICS_OBSERVER_H_