Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Unified Diff: chrome/browser/apps/guest_view/web_view_browsertest.cc

Issue 2547373002: Rename TouchEventAPI to TouchEventFeatureDetection (Closed)
Patch Set: Added a todo Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {

Powered by Google App Engine
This is Rietveld 408576698