chromium/services/network/public/mojom/site_for_cookies.mojom

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

module network.mojom;

import "services/network/public/mojom/schemeful_site.mojom";

// Mapped to net::SiteForCookies.
struct SiteForCookies {
  // These fields should not be used directly, but rather through the mapped
  // net::SiteForCookies.
  SchemefulSite site;
  bool schemefully_same;
};