
The getDisplayMedia implementation currently only handles single streams. This CL ports several GenerateStreams clients to handle multiple streams. Bug: 1300883 Change-Id: I764cb74b9a6fd66929ee7ebc741800968d0be503 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3560567 Reviewed-by: Sergey Ulanov <sergeyu@chromium.org> Reviewed-by: Henrik Boström <hbos@chromium.org> Reviewed-by: Sean Topping <seantopping@chromium.org> Reviewed-by: Evan Stade <estade@chromium.org> Reviewed-by: Finnur Thorarinsson <finnur@chromium.org> Reviewed-by: Michael Bai <michaelbai@chromium.org> Reviewed-by: Alex Moshchuk <alexmos@chromium.org> Reviewed-by: Vasilii Sukhanov <vasilii@chromium.org> Commit-Queue: Simon Hangl <simonha@google.com> Reviewed-by: Elad Alon <eladalon@chromium.org> Reviewed-by: Carlos Knippschild <carlosk@chromium.org> Cr-Commit-Position: refs/heads/main@{#1012407}
Cast base
cast_features
This file contains tools for checking the feature state of all of the features which affect Cast products. Cast features build upon the Chrome feature system. Some aspects of Cast require the feature system to work differently, however, so some additional logic has been layered on top. Details are available in comments of the header file. The basics are:
- If you are adding a new feature, add it to
cast_features.cc
so it lives alongside existing features - Add your new feature to the list of
kFeatures
incast_features.cc
const base::Feature kMyFeature{"my_feature", base::FEATURE_DISABLED_BY_DEFAULT};
const base::Feature* kFeatures[] = {
// ..other features
&kMyFeature
}