| // 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. | |
| 1: CreateFrame(request<Frame> frame); | |
| }; |