chromium/third_party/blink/public/mojom/dom_storage/session_storage_namespace.mojom

// Copyright 2016 The Chromium Authors
// 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);
};