blob: 3a60a1ad5ddee35baf5438467155c265692a0c5a [file] [log] [blame]
// Copyright 2016 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 THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_SECURITY_STYLE_H_
#define THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_SECURITY_STYLE_H_
namespace blink {
// This enum represents the security state of a resource.
enum WebSecurityStyle {
kWebSecurityStyleUnknown,
kWebSecurityStyleNeutral,
kWebSecurityStyleInsecure,
kWebSecurityStyleSecure,
kWebSecurityStyleLast = kWebSecurityStyleSecure
};
} // namespace blink
#endif