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

Side by Side Diff: content/public/common/content_switches.cc

Issue 2640143002: Allow autoplay unmuted for WebAPK in the manifest scope (Closed)
Patch Set: fixed Android build and layout tests Created 3 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/content_switches.h" 6 #include "content/public/common/content_switches.h"
7 #include "media/media_features.h" 7 #include "media/media_features.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 const char kEnableAdaptiveSelectionHandleOrientation[] = 976 const char kEnableAdaptiveSelectionHandleOrientation[] =
977 "enable-adaptive-selection-handle-orientation"; 977 "enable-adaptive-selection-handle-orientation";
978 978
979 // Enable content intent detection in the renderer. 979 // Enable content intent detection in the renderer.
980 const char kEnableContentIntentDetection[] = 980 const char kEnableContentIntentDetection[] =
981 "enable-content-intent-detection"; 981 "enable-content-intent-detection";
982 982
983 // Enable drag manipulation of longpress-triggered text selections. 983 // Enable drag manipulation of longpress-triggered text selections.
984 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; 984 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection";
985 985
986 // Disable gesture requirement for media playback in the specified whitelist.
987 const char kMediaPlaybackGestureWhitelistScope[] =
988 "media-playback-gesture-whitelist-scope";
989
986 // The telephony region (ISO country code) to use in phone number detection. 990 // The telephony region (ISO country code) to use in phone number detection.
987 const char kNetworkCountryIso[] = "network-country-iso"; 991 const char kNetworkCountryIso[] = "network-country-iso";
988 992
989 // When blink should declare a load "done" for the purpose of the 993 // When blink should declare a load "done" for the purpose of the
990 // progress bar. 994 // progress bar.
991 const char kProgressBarCompletion[] = "progress-bar-completion"; 995 const char kProgressBarCompletion[] = "progress-bar-completion";
992 996
993 // Enables remote debug over HTTP on the specified socket name. 997 // Enables remote debug over HTTP on the specified socket name.
994 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; 998 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name";
995 999
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1096 // the given directory. Used primarily to gather samples for IPC fuzzing. 1100 // the given directory. Used primarily to gather samples for IPC fuzzing.
1097 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1101 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1098 1102
1099 // Specifies the testcase used by the IPC fuzzer. 1103 // Specifies the testcase used by the IPC fuzzer.
1100 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1104 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1101 #endif 1105 #endif
1102 1106
1103 // Don't dump stuff here, follow the same order as the header. 1107 // Don't dump stuff here, follow the same order as the header.
1104 1108
1105 } // namespace switches 1109 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698