chromium/components/metrics/content/metrics_services_web_contents_observer.h

// Copyright 2023 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_METRICS_CONTENT_METRICS_SERVICES_WEB_CONTENTS_OBSERVER_H_
#define COMPONENTS_METRICS_CONTENT_METRICS_SERVICES_WEB_CONTENTS_OBSERVER_H_

#include "base/functional/callback.h"
#include "components/metrics/metrics_service_client.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"

namespace metrics {

class MetricsServicesWebContentsObserver
    : public content::WebContentsObserver,
      public content::WebContentsUserData<MetricsServicesWebContentsObserver> {};

}  // namespace metrics

#endif  // COMPONENTS_METRICS_CONTENT_METRICS_SERVICES_WEB_CONTENTS_OBSERVER_H_