mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
|
// 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;
|
||
|
|
||
|
import "components/content_settings/core/common/content_settings.mojom";
|
||
|
|
||
|
// Configures the renderer.
|
||
|
interface RendererConfiguration {
|
||
|
// Configures the renderer with settings that won't change.
|
||
|
SetInitialConfiguration(bool is_incognito_process);
|
||
|
|
||
|
// Update renderer configuration with settings that can change.
|
||
|
SetConfiguration(bool force_safe_search,
|
||
|
int32 youtube_restrict,
|
||
|
string allowed_domains_for_apps,
|
||
|
string variation_ids_header);
|
||
|
|
||
|
// Set the content setting rules stored by the renderer.
|
||
|
SetContentSettingRules(
|
||
|
content_settings.mojom.RendererContentSettingRules rules);
|
||
|
|
||
|
// Tells the renderer to create a FieldTrial, and by using a 100% probability
|
||
|
// for the FieldTrial, forces the FieldTrial to have assigned group name.
|
||
|
//
|
||
|
// See base/metrics/field_trial.h for more information.
|
||
|
SetFieldTrialGroup(string trial_name, string group_name);
|
||
|
};
|