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

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: straighten up state update, replace mQueue.poll() by mQueue.take() 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 // Use IME's own thread instead of using main UI thread. It also means that
934 // we will not use replica editor and do a round trip to renderer to synchronize
935 // with Blink data.
936 const char kUseImeThread[] = "use-ime-thread";
932 #endif 937 #endif
933 938
934 // Enable the aggressive flushing of DOM Storage to minimize data loss. 939 // Enable the aggressive flushing of DOM Storage to minimize data loss.
935 const char kEnableAggressiveDOMStorageFlushing[] = 940 const char kEnableAggressiveDOMStorageFlushing[] =
936 "enable-aggressive-domstorage-flushing"; 941 "enable-aggressive-domstorage-flushing";
937 942
938 // Disable web audio API. 943 // Disable web audio API.
939 const char kDisableWebAudio[] = "disable-webaudio"; 944 const char kDisableWebAudio[] = "disable-webaudio";
940 945
941 #if defined(OS_CHROMEOS) 946 #if defined(OS_CHROMEOS)
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 997 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
993 998
994 // Enables the exporting of the tracing events to ETW. This is only supported on 999 // Enables the exporting of the tracing events to ETW. This is only supported on
995 // Windows Vista and later. 1000 // Windows Vista and later.
996 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1001 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
997 #endif 1002 #endif
998 1003
999 // Don't dump stuff here, follow the same order as the header. 1004 // Don't dump stuff here, follow the same order as the header.
1000 1005
1001 } // namespace switches 1006 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698