• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

activity/H16-Feb-2021-4121

android/H16-Feb-2021-237210

app/H16-Feb-2021-1,8141,365

base/H16-Feb-2021-15,47610,464

bindings/H16-Feb-2021-768532

browser/H03-May-2022-42,80431,070

build/H16-Feb-2021-556492

common/H16-Feb-2021-6,3975,671

crash/H16-Feb-2021-4,7723,218

crypto/H16-Feb-2021-180125

device/bluetooth/H16-Feb-2021-7,6005,631

external_mojo/H16-Feb-2021-2,3811,716

fuchsia/H16-Feb-2021-8048

gpu/H16-Feb-2021-10975

graphics/H16-Feb-2021-8,3455,697

media/H16-Feb-2021-55,93941,048

metrics/H16-Feb-2021-678496

mojo/H16-Feb-2021-1,130709

net/H16-Feb-2021-3,0732,178

public/H16-Feb-2021-3,7491,806

renderer/H03-May-2022-3,8822,871

service/H16-Feb-2021-13376

system/reboot/H16-Feb-2021-1,079752

tools/H16-Feb-2021-719567

tracing/H16-Feb-2021-1,133839

ui/H16-Feb-2021-2,3891,782

utility/H16-Feb-2021-8953

BUILD.gnH A D16-Feb-202123.6 KiB683596

DEPSH A D16-Feb-2021379 1411

DIR_METADATAH A D16-Feb-202139 43

OWNERSH A D16-Feb-2021298 1310

README.mdH A D16-Feb-2021817 2518

__init__.pyH A D16-Feb-20210 10

chromecast.gniH A D16-Feb-20218.2 KiB233185

README.md

1# Cast base
2
3## cast_features
4
5This file contains tools for checking the feature state of all of the features
6which affect Cast products. Cast features build upon
7[the Chrome feature system](https://chromium.googlesource.com/chromium/src/+/master/base/feature_list.h).
8Some aspects of Cast require the feature system to work differently, however,
9so some additional logic has been layered on top. Details are available in
10comments of the header file. The basics are:
11
12 * If you are adding a new feature, add it to `cast_features.cc` so it lives
13 alongside existing features
14 * Add your new feature to the list of `kFeatures` in `cast_features.cc`
15
16```c++
17const base::Feature kMyFeature{"my_feature", base::FEATURE_DISABLED_BY_DEFAULT};
18
19
20const base::Feature* kFeatures[] = {
21  // ..other features
22  &kMyFeature
23}
24```
25