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

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

Issue 1278593004: Introduce ThreadedInputConnection behind a switch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix selection update to be accurate and fix tests 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 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 925 matching lines...) Expand 10 before | Expand all | Expand 10 after
936 936
937 // The telephony region (ISO country code) to use in phone number detection. 937 // The telephony region (ISO country code) to use in phone number detection.
938 const char kNetworkCountryIso[] = "network-country-iso"; 938 const char kNetworkCountryIso[] = "network-country-iso";
939 939
940 // Enables remote debug over HTTP on the specified socket name. 940 // Enables remote debug over HTTP on the specified socket name.
941 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; 941 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name";
942 942
943 // Block ChildProcessMain thread of the renderer's ChildProcessService until a 943 // Block ChildProcessMain thread of the renderer's ChildProcessService until a
944 // Java debugger is attached. 944 // Java debugger is attached.
945 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; 945 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger";
946
947 // Use IME's own thread instead of using main UI thread. It also means that
948 // we will not use replica editor and do a round trip to renderer to synchronize
949 // with Blink data.
950 const char kUseImeThread[] = "use-ime-thread";
946 #endif 951 #endif
947 952
948 // Enable the aggressive flushing of DOM Storage to minimize data loss. 953 // Enable the aggressive flushing of DOM Storage to minimize data loss.
949 const char kEnableAggressiveDOMStorageFlushing[] = 954 const char kEnableAggressiveDOMStorageFlushing[] =
950 "enable-aggressive-domstorage-flushing"; 955 "enable-aggressive-domstorage-flushing";
951 956
952 // Disable web audio API. 957 // Disable web audio API.
953 const char kDisableWebAudio[] = "disable-webaudio"; 958 const char kDisableWebAudio[] = "disable-webaudio";
954 959
955 // Enable audio for desktop share. 960 // Enable audio for desktop share.
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
1034 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 1039 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
1035 1040
1036 // Enables the exporting of the tracing events to ETW. This is only supported on 1041 // Enables the exporting of the tracing events to ETW. This is only supported on
1037 // Windows Vista and later. 1042 // Windows Vista and later.
1038 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1043 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
1039 #endif 1044 #endif
1040 1045
1041 // Don't dump stuff here, follow the same order as the header. 1046 // Don't dump stuff here, follow the same order as the header.
1042 1047
1043 } // namespace switches 1048 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698