chromium/third_party/blink/public/mojom/loader/request_context_frame_type.mojom

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module blink.mojom;

// Corresponds to Fetch's "context frame type", the frame type of the requester
// of the resource fetching. However, it has been removed in spec, see the
// details:https://github.com/whatwg/fetch/issues/93.
enum RequestContextFrameType {
  kAuxiliary,
  kNested,
  kNone,
  kTopLevel,
};