blob: a98ece79147f295927ce1443e607b6e0a2b302e7 [file] [log] [blame]
// Copyright 2016 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 blink.mojom;
// Represents a namespace for Session Storage and allows cloning. This is
// implemented by the browser process.
interface SessionStorageNamespace {
// Clones this namespace the new given namespace. Used before navigating to
// a new frame which would be given this session storage namespace.
Clone(string clone_to_namespace);
};