Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(813)

Side by Side Diff: chrome/common/renderer.mojom

Issue 2531133002: Convert SetIsIncognitoProcess to use mojo. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698