blob: 3ced1f738501bf8532650aab367675c193a96f00 [file] [log] [blame]
// 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.
module chromecast.shell.mojom;
import "mojo/public/mojom/base/values.mojom";
// Represents one feature and stores additional data in
// DictionaryValue
struct Feature {
string name;
mojo_base.mojom.DictionaryValue config;
};
// Receives messages from the browser process to enable/disable Cast
// application-facing features. This interface is implemented by a
// single renderer.
interface FeatureManager {
ConfigureFeatures(array<Feature> features);
};