summaryrefslogtreecommitdiffstats
path: root/chromium/services/network/public/mojom/site_for_cookies.mojom
blob: 240184693d4b6cf160f0dc1501c169ff58810590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2019 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 network.mojom;

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