blob: d2fa0058a06c33efe17671372fc1b776e2767c2f [file] [log] [blame]
// services/network/public/mojom/parsed_request_cookie.mojom-lite-for-compile.js is auto generated by mojom_bindings_generator.py, do not edit
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview
* @suppress {missingRequire}
*/
'use strict';
goog.require('mojo.internal');
goog.provide('network.mojom.ParsedRequestCookieSpec');
/**
* @const { {$:!mojo.internal.MojomType}}
* @export
*/
network.mojom.ParsedRequestCookieSpec =
{ $: /** @type {!mojo.internal.MojomType} */ ({}) };
mojo.internal.Struct(
network.mojom.ParsedRequestCookieSpec.$,
'ParsedRequestCookie',
[
mojo.internal.StructField(
'name', 0,
0,
mojo.internal.String,
null,
false, /* nullable */
0 /* minVersion */,
),
mojo.internal.StructField(
'value', 8,
0,
mojo.internal.String,
null,
false, /* nullable */
0 /* minVersion */,
),
],
[[0, 24],]);
goog.provide('network.mojom.ParsedRequestCookie');
/** @record */
network.mojom.ParsedRequestCookie = class {
constructor() {
/** @export { !string } */
this.name;
/** @export { !string } */
this.value;
}
};