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

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

Issue 2467913002: Touch event flag should control only DOM event firing. (Closed)
Patch Set: Merge branch 'master' of https://chromium.googlesource.com/chromium/src into patchtoflags Created 4 years, 1 month 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 0328c36ef8d3d1ed504f3f17d88eed9f055eb361..12c00de0c4a2fc62abb33482ed0435a36b01e988 100644
--- a/chrome/browser/apps/guest_view/web_view_browsertest.cc
+++ b/chrome/browser/apps/guest_view/web_view_browsertest.cc
@@ -3401,9 +3401,6 @@ class WebViewGuestScrollTouchTest : public WebViewGuestScrollTest {
protected:
void SetUpCommandLine(base::CommandLine* command_line) override {
WebViewGuestScrollTest::SetUpCommandLine(command_line);
-
- command_line->AppendSwitchASCII(switches::kTouchEvents,
- switches::kTouchEventsEnabled);
}
};
@@ -3523,9 +3520,6 @@ class WebViewGuestTouchFocusTest : public WebViewTestBase {
WebViewGuestTouchFocusTest() {}
void SetUpCommandLine(base::CommandLine* command_line) override {
WebViewTestBase::SetUpCommandLine(command_line);
-
- command_line->AppendSwitchASCII(switches::kTouchEvents,
- switches::kTouchEventsEnabled);
}
private:
@@ -3691,9 +3685,6 @@ class WebViewScrollGuestContentTest : public WebViewTest {
void SetUpCommandLine(base::CommandLine* command_line) override {
WebViewTest::SetUpCommandLine(command_line);
-
- command_line->AppendSwitchASCII(switches::kTouchEvents,
- switches::kTouchEventsEnabled);
}
};
@@ -3767,9 +3758,6 @@ class WebViewFocusTest : public WebViewTest {
void SetUpCommandLine(base::CommandLine* command_line) override {
WebViewTest::SetUpCommandLine(command_line);
-
- command_line->AppendSwitchASCII(switches::kTouchEvents,
- switches::kTouchEventsEnabled);
}
void ForceCompositorFrame() {

Powered by Google App Engine
This is Rietveld 408576698