0
Files
src/chromecast
Yuanyao Zhong 327787d892 [Chromecast] Send tap event for mouse left button click
When text field is focused and received double tap, touch exploration
controller send out ax gesture click which triggers this stubbed out
function. The function needs to rewrite a tap gesture for touch explored
components.

Bug: b/195347732
Test: test on device on webview with text field.
Change-Id: I3bdec5ceba4f1387a7aa1ca0476be4bf2de3ef2c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3098047
Reviewed-by: Randy Rossi <rmrossi@chromium.org>
Reviewed-by: Daniel Nicoara <dnicoara@chromium.org>
Commit-Queue: Yuanyao Zhong <yyzhong@google.com>
Cr-Commit-Position: refs/heads/master@{#912688}
2021-08-17 19:26:09 +00:00
..
2021-08-06 22:16:55 +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
const base::Feature kMyFeature{"my_feature", base::FEATURE_DISABLED_BY_DEFAULT};


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