blob: 0265e6d160d395fd39a1d70afae2e13f1b96c467 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_CHROME_BROWSER_SSL_CAPTIVE_PORTAL_METRICS_H_
#define IOS_CHROME_BROWSER_SSL_CAPTIVE_PORTAL_METRICS_H_
// Enum used to record the captive portal detection result.
enum class CaptivePortalStatus {
UNKNOWN = 0,
OFFLINE = 1,
ONLINE = 2,
PORTAL = 3,
PROXY_AUTH_REQUIRED = 4,
COUNT
};
#endif // IOS_CHROME_BROWSER_SSL_CAPTIVE_PORTAL_METRICS_H_