0
Files
src/chromecast
Dave Tapuska f618031bf3 Reland "Move enable_guest_view out of extensions"
This is a reland of commit d643d0bb1c

Patch set 1 is as landed, patch set 2 fixes chromecast build by
adding enable_guest_view to the linux.gni config file.

Original change's description:
> Move enable_guest_view out of extensions
>
> We should be able to depend on components/guest_view and determine
> if it is indeed enabled.
> Bug: 40202416, 356671305
>
> Change-Id: I6d77ef2dcb1194f1331411cdcd4d1269144528eb
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5994331
> Reviewed-by: Joe Mason <joenotcharles@google.com>
> Reviewed-by: Kevin McNee <mcnee@chromium.org>
> Reviewed-by: Avi Drissman <avi@chromium.org>
> Commit-Queue: Dave Tapuska <dtapuska@chromium.org>
> Reviewed-by: Reilly Grant <reillyg@chromium.org>
> Reviewed-by: Dave Tapuska <dtapuska@chromium.org>
> Cr-Commit-Position: refs/heads/main@{#1379199}

Bug: 40202416, 356671305
Change-Id: I70a85fafdaede43a335f99b372b84dbc5f6aa57e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6000816
Reviewed-by: Reilly Grant <reillyg@chromium.org>
Reviewed-by: Simeon Anfinrud <sanfin@chromium.org>
Commit-Queue: Dave Tapuska <dtapuska@chromium.org>
Reviewed-by: Avi Drissman <avi@chromium.org>
Reviewed-by: Joe Mason <joenotcharles@google.com>
Reviewed-by: Kevin McNee <mcnee@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1379345}
2024-11-06 23:45:29 +00:00
..
2024-10-01 23:23:00 +00:00
2024-11-04 13:50:31 +00:00
2024-11-04 13:50:31 +00:00
2024-11-04 13:50:31 +00:00
2024-10-03 22:12:46 +00:00
2024-10-26 06:43:42 +00:00

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 in cast_features.cc
BASE_FEATURE(kMyFeature, "my_feature", base::FEATURE_DISABLED_BY_DEFAULT);


const base::Feature* kFeatures[] = {
  // ..other features
  &kMyFeature
}