Chromium Code Reviews| Index: chrome/common/renderer.mojom |
| diff --git a/chrome/common/renderer.mojom b/chrome/common/renderer.mojom |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..50d7f7a004eb4bcf5396ec86dab7a09250c837b3 |
| --- /dev/null |
| +++ b/chrome/common/renderer.mojom |
| @@ -0,0 +1,17 @@ |
| +// 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 chrome.mojom; |
| + |
| +// The primordial Channel-associated interface implemented by a render process. |
| +// This should be used for implementing browser-to-renderer control messages |
| +// which need to retain FIFO with respect to legacy IPC messages. |
| +interface Renderer { |
|
sky
2016/12/05 16:11:22
For an interface that is meant to contain control/
nigeltao1
2016/12/08 04:33:41
This (chrome.mojom.Renderer) is meant to be the s/
|
| + // Configures the renderer, queued to send when the render process will |
| + // launch. |
| + // |
| + // TODO(nigeltao): port the ChromeViewMsg_SetContentSettingRules legacy IPC |
| + // message to be an additional arg here. |
| + SetInitialConfiguration(bool is_incognito_process); |
| +}; |