// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. module storage.mojom; import "url/mojom/origin.mojom"; // Indicates a policy update for a specific origin. struct StoragePolicyUpdate { // The origin to which this policy applies. url.mojom.Origin origin; // Indicates whether data for this origin should be purged on shutdown. bool purge_on_shutdown; };