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

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: removed ImeTest#testDoesNotHang_rendererCrashes which does not test anything 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 948 matching lines...) Expand 10 before | Expand all | Expand 10 after
959 959
960 // The telephony region (ISO country code) to use in phone number detection. 960 // The telephony region (ISO country code) to use in phone number detection.
961 const char kNetworkCountryIso[] = "network-country-iso"; 961 const char kNetworkCountryIso[] = "network-country-iso";
962 962
963 // Enables remote debug over HTTP on the specified socket name. 963 // Enables remote debug over HTTP on the specified socket name.
964 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; 964 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name";
965 965
966 // Block ChildProcessMain thread of the renderer's ChildProcessService until a 966 // Block ChildProcessMain thread of the renderer's ChildProcessService until a
967 // Java debugger is attached. 967 // Java debugger is attached.
968 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; 968 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger";
969
970 // Use IME's own thread instead of using main UI thread. It also means that
971 // we will not use replica editor and do a round trip to renderer to synchronize
972 // with Blink data.
973 const char kEnableImeThread[] = "enable-ime-thread";
974 const char kDisableImeThread[] = "disable-ime-thread";
969 #endif 975 #endif
970 976
971 // Enable the aggressive flushing of DOM Storage to minimize data loss. 977 // Enable the aggressive flushing of DOM Storage to minimize data loss.
972 const char kEnableAggressiveDOMStorageFlushing[] = 978 const char kEnableAggressiveDOMStorageFlushing[] =
973 "enable-aggressive-domstorage-flushing"; 979 "enable-aggressive-domstorage-flushing";
974 980
975 // Disable web audio API. 981 // Disable web audio API.
976 const char kDisableWebAudio[] = "disable-webaudio"; 982 const char kDisableWebAudio[] = "disable-webaudio";
977 983
978 // Enable audio for desktop share. 984 // Enable audio for desktop share.
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 1063 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
1058 1064
1059 // Enables the exporting of the tracing events to ETW. This is only supported on 1065 // Enables the exporting of the tracing events to ETW. This is only supported on
1060 // Windows Vista and later. 1066 // Windows Vista and later.
1061 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1067 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
1062 #endif 1068 #endif
1063 1069
1064 // Don't dump stuff here, follow the same order as the header. 1070 // Don't dump stuff here, follow the same order as the header.
1065 1071
1066 } // namespace switches 1072 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698