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

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

Issue 1386403003: Resize only the virtual viewport when the OSK triggers a resize. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase master Inset handling logic Created 4 years, 11 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 7
8 namespace switches { 8 namespace switches {
9 9
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
(...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after
922 922
923 // The telephony region (ISO country code) to use in phone number detection. 923 // The telephony region (ISO country code) to use in phone number detection.
924 const char kNetworkCountryIso[] = "network-country-iso"; 924 const char kNetworkCountryIso[] = "network-country-iso";
925 925
926 // Enables remote debug over HTTP on the specified socket name. 926 // Enables remote debug over HTTP on the specified socket name.
927 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; 927 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name";
928 928
929 // Block ChildProcessMain thread of the renderer's ChildProcessService until a 929 // Block ChildProcessMain thread of the renderer's ChildProcessService until a
930 // Java debugger is attached. 930 // Java debugger is attached.
931 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; 931 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger";
932
933 // Enables overscrolling for the OSK on Android.
934 const char kEnableOSKOverscroll[] = "enable-osk-overscroll";
932 #endif 935 #endif
933 936
934 // Enable the aggressive flushing of DOM Storage to minimize data loss. 937 // Enable the aggressive flushing of DOM Storage to minimize data loss.
935 const char kEnableAggressiveDOMStorageFlushing[] = 938 const char kEnableAggressiveDOMStorageFlushing[] =
936 "enable-aggressive-domstorage-flushing"; 939 "enable-aggressive-domstorage-flushing";
937 940
938 // Disable web audio API. 941 // Disable web audio API.
939 const char kDisableWebAudio[] = "disable-webaudio"; 942 const char kDisableWebAudio[] = "disable-webaudio";
940 943
941 // Enable audio for desktop share. 944 // Enable audio for desktop share.
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
996 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 999 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
997 1000
998 // Enables the exporting of the tracing events to ETW. This is only supported on 1001 // Enables the exporting of the tracing events to ETW. This is only supported on
999 // Windows Vista and later. 1002 // Windows Vista and later.
1000 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1003 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
1001 #endif 1004 #endif
1002 1005
1003 // Don't dump stuff here, follow the same order as the header. 1006 // Don't dump stuff here, follow the same order as the header.
1004 1007
1005 } // namespace switches 1008 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698