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

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: fixed a crash for LatinIME 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 917 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 928
929 // The telephony region (ISO country code) to use in phone number detection. 929 // The telephony region (ISO country code) to use in phone number detection.
930 const char kNetworkCountryIso[] = "network-country-iso"; 930 const char kNetworkCountryIso[] = "network-country-iso";
931 931
932 // Enables remote debug over HTTP on the specified socket name. 932 // Enables remote debug over HTTP on the specified socket name.
933 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; 933 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name";
934 934
935 // Block ChildProcessMain thread of the renderer's ChildProcessService until a 935 // Block ChildProcessMain thread of the renderer's ChildProcessService until a
936 // Java debugger is attached. 936 // Java debugger is attached.
937 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; 937 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger";
938
939 // Use IME's own thread instead of using main UI thread. It also means that
940 // we will not use replica editor and do a round trip to renderer to synchronize
941 // with Blink data.
942 const char kUseImeThread[] = "use-ime-thread";
938 #endif 943 #endif
939 944
940 // Enable the aggressive flushing of DOM Storage to minimize data loss. 945 // Enable the aggressive flushing of DOM Storage to minimize data loss.
941 const char kEnableAggressiveDOMStorageFlushing[] = 946 const char kEnableAggressiveDOMStorageFlushing[] =
942 "enable-aggressive-domstorage-flushing"; 947 "enable-aggressive-domstorage-flushing";
943 948
944 // Disable web audio API. 949 // Disable web audio API.
945 const char kDisableWebAudio[] = "disable-webaudio"; 950 const char kDisableWebAudio[] = "disable-webaudio";
946 951
947 #if defined(OS_CHROMEOS) 952 #if defined(OS_CHROMEOS)
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 1003 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
999 1004
1000 // Enables the exporting of the tracing events to ETW. This is only supported on 1005 // Enables the exporting of the tracing events to ETW. This is only supported on
1001 // Windows Vista and later. 1006 // Windows Vista and later.
1002 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1007 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
1003 #endif 1008 #endif
1004 1009
1005 // Don't dump stuff here, follow the same order as the header. 1010 // Don't dump stuff here, follow the same order as the header.
1006 1011
1007 } // namespace switches 1012 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698