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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 1914143002: Experimental 'purging and suspending' backgrounded tabs behind the flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address on reviews Created 4 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
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 "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 const char kProxyBypassList[] = "proxy-bypass-list"; 867 const char kProxyBypassList[] = "proxy-bypass-list";
868 868
869 // Uses the pac script at the given URL 869 // Uses the pac script at the given URL
870 const char kProxyPacUrl[] = "proxy-pac-url"; 870 const char kProxyPacUrl[] = "proxy-pac-url";
871 871
872 // Uses a specified proxy server, overrides system settings. This switch only 872 // Uses a specified proxy server, overrides system settings. This switch only
873 // affects HTTP and HTTPS requests. ARC-apps use only HTTP proxy server with the 873 // affects HTTP and HTTPS requests. ARC-apps use only HTTP proxy server with the
874 // highest priority. 874 // highest priority.
875 const char kProxyServer[] = "proxy-server"; 875 const char kProxyServer[] = "proxy-server";
876 876
877 // Specifies the time for tab purging and suspending. When the indicated time
878 // passes after a tab goes backgrounded, the backgrounded tab is purged and
879 // suspended to save memory usage. The default value is "0" and purging and
880 // suspending never happen.
881 const char kPurgeAndSuspendTime[] = "purge-and-suspend-time";
882
877 // Specifies a comma separated list of QUIC connection options to send to 883 // Specifies a comma separated list of QUIC connection options to send to
878 // the server. 884 // the server.
879 const char kQuicConnectionOptions[] = "quic-connection-options"; 885 const char kQuicConnectionOptions[] = "quic-connection-options";
880 886
881 // Specifies a comma separated list of hosts to whitelist QUIC for. 887 // Specifies a comma separated list of hosts to whitelist QUIC for.
882 const char kQuicHostWhitelist[] = "quic-host-whitelist"; 888 const char kQuicHostWhitelist[] = "quic-host-whitelist";
883 889
884 // Specifies the maximum length for a QUIC packet. 890 // Specifies the maximum length for a QUIC packet.
885 const char kQuicMaxPacketLength[] = "quic-max-packet-length"; 891 const char kQuicMaxPacketLength[] = "quic-max-packet-length";
886 892
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
1355 1361
1356 // ----------------------------------------------------------------------------- 1362 // -----------------------------------------------------------------------------
1357 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1363 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1358 // 1364 //
1359 // You were going to just dump your switches here, weren't you? Instead, please 1365 // You were going to just dump your switches here, weren't you? Instead, please
1360 // put them in alphabetical order above, or in order inside the appropriate 1366 // put them in alphabetical order above, or in order inside the appropriate
1361 // ifdef at the bottom. The order should match the header. 1367 // ifdef at the bottom. The order should match the header.
1362 // ----------------------------------------------------------------------------- 1368 // -----------------------------------------------------------------------------
1363 1369
1364 } // namespace switches 1370 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698