blob: 90bd9c1b8586190f21f0cf84b9438e96e2335634 [file] [log] [blame] [view]
Kartar Singh746606522024-05-29 09:34:301# //components/input
2
3The directory contains input processing code shared across browser and viz.
4The requirement for this component came out of
5[InputVizard](https://docs.google.com/document/d/1mcydbkgFCO_TT9NuFE962L8PLJWT2XOfXUAPO88VuKE/preview)
6project, which proposes moving input handling off of browser main thread to viz
7compositor thread. To execute InputVizard project, minimum required input
8code is being moved in this component, such that browser and viz can depend on
9it.
10
11Please see
12[cc/input/README.md](https://chromium.googlesource.com/chromium/src/+/HEAD/cc/input/README.md)
13for information on input handling in compositor, and
14[content/browser/renderer_host/input/README.md](https://chromium.googlesource.com/chromium/src/+/HEAD/content/browser/renderer_host/input/README.md)
15for browser side input handling code.