| Index: chrome/browser/apps/guest_view/web_view_browsertest.cc
|
| diff --git a/chrome/browser/apps/guest_view/web_view_browsertest.cc b/chrome/browser/apps/guest_view/web_view_browsertest.cc
|
| index 341fd4a0ed69aa36e71cfcd151b88903f74ecd18..7b6fbe6fe4d1903285aa889ac220d9e1f42b1f7f 100644
|
| --- a/chrome/browser/apps/guest_view/web_view_browsertest.cc
|
| +++ b/chrome/browser/apps/guest_view/web_view_browsertest.cc
|
| @@ -3406,8 +3406,9 @@ class WebViewGuestScrollTouchTest : public WebViewGuestScrollTest {
|
| void SetUpCommandLine(base::CommandLine* command_line) override {
|
| WebViewGuestScrollTest::SetUpCommandLine(command_line);
|
|
|
| - command_line->AppendSwitchASCII(switches::kTouchEvents,
|
| - switches::kTouchEventsEnabled);
|
| + command_line->AppendSwitchASCII(
|
| + switches::kTouchEventFeatureDetection,
|
| + switches::kTouchEventFeatureDetectionEnabled);
|
| }
|
| };
|
|
|
| @@ -3528,8 +3529,9 @@ class WebViewGuestTouchFocusTest : public WebViewTestBase {
|
| void SetUpCommandLine(base::CommandLine* command_line) override {
|
| WebViewTestBase::SetUpCommandLine(command_line);
|
|
|
| - command_line->AppendSwitchASCII(switches::kTouchEvents,
|
| - switches::kTouchEventsEnabled);
|
| + command_line->AppendSwitchASCII(
|
| + switches::kTouchEventFeatureDetection,
|
| + switches::kTouchEventFeatureDetectionEnabled);
|
| }
|
|
|
| private:
|
| @@ -3696,8 +3698,9 @@ class WebViewScrollGuestContentTest : public WebViewTest {
|
| void SetUpCommandLine(base::CommandLine* command_line) override {
|
| WebViewTest::SetUpCommandLine(command_line);
|
|
|
| - command_line->AppendSwitchASCII(switches::kTouchEvents,
|
| - switches::kTouchEventsEnabled);
|
| + command_line->AppendSwitchASCII(
|
| + switches::kTouchEventFeatureDetection,
|
| + switches::kTouchEventFeatureDetectionEnabled);
|
| }
|
| };
|
|
|
| @@ -3772,8 +3775,9 @@ class WebViewFocusTest : public WebViewTest {
|
| void SetUpCommandLine(base::CommandLine* command_line) override {
|
| WebViewTest::SetUpCommandLine(command_line);
|
|
|
| - command_line->AppendSwitchASCII(switches::kTouchEvents,
|
| - switches::kTouchEventsEnabled);
|
| + command_line->AppendSwitchASCII(
|
| + switches::kTouchEventFeatureDetection,
|
| + switches::kTouchEventFeatureDetectionEnabled);
|
| }
|
|
|
| void ForceCompositorFrame() {
|
|
|