| OLD | NEW |
| 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 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 872 // affects HTTP and HTTPS requests. ARC-apps use only HTTP proxy server with the | 872 // affects HTTP and HTTPS requests. ARC-apps use only HTTP proxy server with the |
| 873 // highest priority. | 873 // highest priority. |
| 874 const char kProxyServer[] = "proxy-server"; | 874 const char kProxyServer[] = "proxy-server"; |
| 875 | 875 |
| 876 // Specifies the time for tab purging and suspending. When the indicated time | 876 // Specifies the time for tab purging and suspending. When the indicated time |
| 877 // passes after a tab goes backgrounded, the backgrounded tab is purged and | 877 // passes after a tab goes backgrounded, the backgrounded tab is purged and |
| 878 // suspended to save memory usage. The default value is "0" and purging and | 878 // suspended to save memory usage. The default value is "0" and purging and |
| 879 // suspending never happen. | 879 // suspending never happen. |
| 880 const char kPurgeAndSuspendTime[] = "purge-and-suspend-time"; | 880 const char kPurgeAndSuspendTime[] = "purge-and-suspend-time"; |
| 881 | 881 |
| 882 // Specifies the absolute path to the devtools front-end folder. This |
| 883 // front-end will be used for the remote debugging session. |
| 884 const char kRemoteDebuggingFrontend[] = "remote-debugging-frontend"; |
| 885 |
| 882 // Porvides a list of addresses to discover DevTools remote debugging targets. | 886 // Porvides a list of addresses to discover DevTools remote debugging targets. |
| 883 // The format is <host>:<port>,...,<host>:port. | 887 // The format is <host>:<port>,...,<host>:port. |
| 884 const char kRemoteDebuggingTargets[] = "remote-debugging-targets"; | 888 const char kRemoteDebuggingTargets[] = "remote-debugging-targets"; |
| 885 | 889 |
| 886 // Indicates the last session should be restored on startup. This overrides the | 890 // Indicates the last session should be restored on startup. This overrides the |
| 887 // preferences value and is primarily intended for testing. The value of this | 891 // preferences value and is primarily intended for testing. The value of this |
| 888 // switch is the number of tabs to wait until loaded before 'load completed' is | 892 // switch is the number of tabs to wait until loaded before 'load completed' is |
| 889 // sent to the ui_test. | 893 // sent to the ui_test. |
| 890 const char kRestoreLastSession[] = "restore-last-session"; | 894 const char kRestoreLastSession[] = "restore-last-session"; |
| 891 | 895 |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1335 | 1339 |
| 1336 // ----------------------------------------------------------------------------- | 1340 // ----------------------------------------------------------------------------- |
| 1337 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1341 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1338 // | 1342 // |
| 1339 // You were going to just dump your switches here, weren't you? Instead, please | 1343 // You were going to just dump your switches here, weren't you? Instead, please |
| 1340 // put them in alphabetical order above, or in order inside the appropriate | 1344 // put them in alphabetical order above, or in order inside the appropriate |
| 1341 // ifdef at the bottom. The order should match the header. | 1345 // ifdef at the bottom. The order should match the header. |
| 1342 // ----------------------------------------------------------------------------- | 1346 // ----------------------------------------------------------------------------- |
| 1343 | 1347 |
| 1344 } // namespace switches | 1348 } // namespace switches |
| OLD | NEW |