blob: 7de9089ee9b85cc9caf5ba9861d4cb1fb2ec4459 [file] [log] [blame]
// Copyright 2018 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.
library chromium.web;
// Manages browsing state (e.g. LocalStorage, cookies, etc) associated with
// a set of Frames.
interface Context {
// Creates a new frame under this Context.
//
// |frame|: An interface request that will be bound to the created Frame.
CreateFrame(request<Frame> frame);
};