mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
19 lines
837 B
Plaintext
19 lines
837 B
Plaintext
// Copyright 2017 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 client_hints.mojom;
|
|
|
|
import "mojo/common/time.mojom";
|
|
import "third_party/WebKit/public/platform/web_client_hints_types.mojom";
|
|
import "url/mojo/origin.mojom";
|
|
|
|
// Sent from renderer to browser process when the lifetime of the client hints
|
|
// for |primary_origin| has changed. |client_hints| is the list of client hints
|
|
// that |primary_origin| has requested for. The client hints should be sent
|
|
// for a duration of |expiration_duration|.
|
|
interface ClientHints {
|
|
PersistClientHints(url.mojom.Origin primary_origin,
|
|
array<blink.mojom.WebClientHintsType> client_hints,
|
|
mojo.common.mojom.TimeDelta expiration_duration);
|
|
}; |