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

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

Issue 1129233003: localStorage: Aggressively flush to disk for Android WebView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@local-storage-flush-android
Patch Set: Added trace event. 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 922 matching lines...) Expand 10 before | Expand all | Expand 10 after
933 const char kNetworkCountryIso[] = "network-country-iso"; 933 const char kNetworkCountryIso[] = "network-country-iso";
934 934
935 // Enables remote debug over HTTP on the specified socket name. 935 // Enables remote debug over HTTP on the specified socket name.
936 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; 936 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name";
937 937
938 // Block ChildProcessMain thread of the renderer's ChildProcessService until a 938 // Block ChildProcessMain thread of the renderer's ChildProcessService until a
939 // Java debugger is attached. 939 // Java debugger is attached.
940 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; 940 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger";
941 #endif 941 #endif
942 942
943 // Enable the aggressive flushing of DOM Storage to minimize data loss.
944 const char kEnableAggressiveDOMStorageFlushing[] =
945 "enable-aggressive-domstorage-flushing";
946
943 // Disable web audio API. 947 // Disable web audio API.
944 const char kDisableWebAudio[] = "disable-webaudio"; 948 const char kDisableWebAudio[] = "disable-webaudio";
945 949
946 #if defined(OS_CHROMEOS) 950 #if defined(OS_CHROMEOS)
947 // Disables panel fitting (used for mirror mode). 951 // Disables panel fitting (used for mirror mode).
948 const char kDisablePanelFitting[] = "disable-panel-fitting"; 952 const char kDisablePanelFitting[] = "disable-panel-fitting";
949 953
950 // Disables VA-API accelerated video encode. 954 // Disables VA-API accelerated video encode.
951 const char kDisableVaapiAcceleratedVideoEncode[] = 955 const char kDisableVaapiAcceleratedVideoEncode[] =
952 "disable-vaapi-accelerated-video-encode"; 956 "disable-vaapi-accelerated-video-encode";
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
996 // Windows Vista and later. 1000 // Windows Vista and later.
997 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1001 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
998 #endif 1002 #endif
999 1003
1000 // Enables the use of NPAPI plugins. 1004 // Enables the use of NPAPI plugins.
1001 const char kEnableNpapi[] = "enable-npapi"; 1005 const char kEnableNpapi[] = "enable-npapi";
1002 1006
1003 // Don't dump stuff here, follow the same order as the header. 1007 // Don't dump stuff here, follow the same order as the header.
1004 1008
1005 } // namespace switches 1009 } // 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