OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 module chrome.mojom; |
| 6 |
| 7 struct InitialConfigurationParams { |
| 8 // Indicates whether this process is running in incognito mode. |
| 9 bool is_incognito_process; |
| 10 |
| 11 // TODO(nigeltao): port the ChromeViewMsg_SetContentSettingRules legacy IPC |
| 12 // message to use Mojo. |
| 13 }; |
| 14 |
| 15 // The primordial Channel-associated interface implemented by a render process. |
| 16 // This should be used for implementing browser-to-renderer control messages |
| 17 // which need to retain FIFO with respect to legacy IPC messages. |
| 18 // |
| 19 // See also content.mojom.Renderer defined in content/common/renderer.mojom. |
| 20 interface Renderer { |
| 21 // Configures the renderer, queued to send when the render process will |
| 22 // launch. |
| 23 InitialConfiguration(InitialConfigurationParams params); |
| 24 }; |
OLD | NEW |