naiveproxy/third_party/WebKit/public/platform/address_space.mojom
2018-02-02 05:49:39 -05:00

18 lines
631 B
Plaintext

// 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.
module blink.mojom;
// Represents AddressSpace from the "CORS and RFC1918" spec. The ordering is
// important, as it's used to determine whether preflights are required, as per
// https://wicg.github.io/cors-rfc1918/#framework
//
// TODO(darin): Update all WebAddressSpace consumers to use this type instead,
// and remove the typemap.
enum AddressSpace {
kLocal, // loopback, link local
kPrivate, // Reserved by RFC1918
kPublic, // Everything else
};