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