clang/win/asan: Remove /fallback and enable warnings-as-errors.
[chromium-blink-merge.git] / ios / web / public / web_state / url_verification_constants.h
blobf973d56048b65b5fbf078e5e5e3cc3156dbdcafe
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef IOS_WEB_PUBLIC_WEB_STATE_URL_VERIFICATION_CONSTANTS_H_
6 #define IOS_WEB_PUBLIC_WEB_STATE_URL_VERIFICATION_CONSTANTS_H_
8 namespace web {
9 enum URLVerificationTrustLevel {
10 // The returned URL cannot be trusted.
11 kNone,
12 // The returned URL can be displayed to the user, but the DOM of the
13 // UIWebView doesn't match yet.
14 kMixed,
15 // The returned URL can be trusted.
16 kAbsolute,
18 } // namespace web
20 #endif // IOS_WEB_PUBLIC_WEB_STATE_URL_VERIFICATION_CONSTANTS_H_