// Copyright 2015 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_SECURITY_INTERSTITIALS_CONTENT_CAPTIVE_PORTAL_METRICS_RECORDER_H_ #define COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_CAPTIVE_PORTAL_METRICS_RECORDER_H_ #include <string> #include <vector> #include "components/captive_portal/content/captive_portal_service.h" #include "net/cert/x509_certificate.h" #include "url/gurl.h" // This class helps the SSL interstitial record captive portal-specific // metrics. It should only be used on the UI thread because its implementation // uses captive_portal::CaptivePortalService which can only be // accessed on the UI thread. class CaptivePortalMetricsRecorder { … }; #endif // COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_CAPTIVE_PORTAL_METRICS_RECORDER_H_