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

Unified Diff: content/shell/app/shell_main_delegate.cc

Issue 1660193007: [Presentation API] Adding a flag to disable gesture check for starting presentations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months 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: content/shell/app/shell_main_delegate.cc
diff --git a/content/shell/app/shell_main_delegate.cc b/content/shell/app/shell_main_delegate.cc
index 1c9f074aaf16b55ab68ab2cf266a94acd7b5a11e..df597166d5e1d0e2592b52ace1c0ed3ff77ba81c 100644
--- a/content/shell/app/shell_main_delegate.cc
+++ b/content/shell/app/shell_main_delegate.cc
@@ -174,6 +174,8 @@ bool ShellMainDelegate::BasicStartupComplete(int* exit_code) {
command_line.AppendSwitchASCII(switches::kForceDeviceScaleFactor, "1.0");
command_line.AppendSwitch(
switches::kDisableGestureRequirementForMediaPlayback);
+ command_line.AppendSwitch(
whywhat 2016/02/04 20:39:08 This is not used I think? It would disable the req
Zhiqiang Zhang (Slow) 2016/02/05 16:20:33 Done.
+ switches::kDisableGestureRequirementForPresentation);
if (!command_line.HasSwitch(switches::kStableReleaseMode)) {
command_line.AppendSwitch(

Powered by Google App Engine
This is Rietveld 408576698