blob: 0fe63af6970055fe068929fa047bb2f3be1914f1 [file] [log] [blame]
// Copyright 2024 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;
// Represents the key and value of a cookie as written into a request (as
// opposed to CanonicalCookie, which has more information).
// Corresponds to `net::cookie_util::ParsedRequestCookie`.
struct ParsedRequestCookie {
string name;
string value;
};