blob: 4093593334ab2995c3c97a26c145eb9b23f4dcfd [file] [log] [blame]
// Copyright 2015 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_RENDERER_PLATFORM_LOADER_FETCH_CROSS_ORIGIN_ATTRIBUTE_VALUE_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_CROSS_ORIGIN_ATTRIBUTE_VALUE_H_
namespace blink {
// This corresponds to the CORS settings attributes defined in the HTML spec:
// https://html.spec.whatwg.org/C/#cors-settings-attributes
enum CrossOriginAttributeValue {
kCrossOriginAttributeNotSet,
kCrossOriginAttributeAnonymous,
kCrossOriginAttributeUseCredentials,
};
} // namespace blink
#endif