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

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

Issue 1138843002: localStorage: Aggressively flush to disk for Android WebView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2357
Patch Set: Created 5 years, 7 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
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 const char kNetworkCountryIso[] = "network-country-iso"; 921 const char kNetworkCountryIso[] = "network-country-iso";
922 922
923 // Enables remote debug over HTTP on the specified socket name. 923 // Enables remote debug over HTTP on the specified socket name.
924 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; 924 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name";
925 925
926 // Block ChildProcessMain thread of the renderer's ChildProcessService until a 926 // Block ChildProcessMain thread of the renderer's ChildProcessService until a
927 // Java debugger is attached. 927 // Java debugger is attached.
928 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; 928 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger";
929 #endif 929 #endif
930 930
931 // Enable the aggressive flushing of DOM Storage to minimize data loss.
932 const char kEnableAggressiveDOMStorageFlushing[] =
933 "enable-aggressive-domstorage-flushing";
934
931 // Disable web audio API. 935 // Disable web audio API.
932 const char kDisableWebAudio[] = "disable-webaudio"; 936 const char kDisableWebAudio[] = "disable-webaudio";
933 937
934 #if defined(OS_CHROMEOS) 938 #if defined(OS_CHROMEOS)
935 // Disables panel fitting (used for mirror mode). 939 // Disables panel fitting (used for mirror mode).
936 const char kDisablePanelFitting[] = "disable-panel-fitting"; 940 const char kDisablePanelFitting[] = "disable-panel-fitting";
937 941
938 // Disables VA-API accelerated video encode. 942 // Disables VA-API accelerated video encode.
939 const char kDisableVaapiAcceleratedVideoEncode[] = 943 const char kDisableVaapiAcceleratedVideoEncode[] =
940 "disable-vaapi-accelerated-video-encode"; 944 "disable-vaapi-accelerated-video-encode";
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
974 // clashes between different instances of Chrome. 978 // clashes between different instances of Chrome.
975 const char kFontCacheSharedMemSuffix[] = "font-cache-shared-mem-suffix"; 979 const char kFontCacheSharedMemSuffix[] = "font-cache-shared-mem-suffix";
976 #endif 980 #endif
977 981
978 // Enables the use of NPAPI plugins. 982 // Enables the use of NPAPI plugins.
979 const char kEnableNpapi[] = "enable-npapi"; 983 const char kEnableNpapi[] = "enable-npapi";
980 984
981 // Don't dump stuff here, follow the same order as the header. 985 // Don't dump stuff here, follow the same order as the header.
982 986
983 } // namespace switches 987 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698