| 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 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 828 // Specifies the maximum length for a QUIC packet. | 828 // Specifies the maximum length for a QUIC packet. |
| 829 const char kQuicMaxPacketLength[] = "quic-max-packet-length"; | 829 const char kQuicMaxPacketLength[] = "quic-max-packet-length"; |
| 830 | 830 |
| 831 // Specifies the version of QUIC to use. | 831 // Specifies the version of QUIC to use. |
| 832 const char kQuicVersion[] = "quic-version"; | 832 const char kQuicVersion[] = "quic-version"; |
| 833 // Porvides a list of addresses to discover DevTools remote debugging targets. | 833 // Porvides a list of addresses to discover DevTools remote debugging targets. |
| 834 // The format is <host>:<port>,...,<host>:port. | 834 // The format is <host>:<port>,...,<host>:port. |
| 835 const char kRemoteDebuggingTargets[] = "remote-debugging-targets"; | 835 const char kRemoteDebuggingTargets[] = "remote-debugging-targets"; |
| 836 | 836 |
| 837 // Indicates the last session should be restored on startup. This overrides the | 837 // Indicates the last session should be restored on startup. This overrides the |
| 838 // preferences value and is primarily intended for testing. The value of this | 838 // preferences value. |
| 839 // switch is the number of tabs to wait until loaded before 'load completed' is | |
| 840 // sent to the ui_test. | |
| 841 const char kRestoreLastSession[] = "restore-last-session"; | 839 const char kRestoreLastSession[] = "restore-last-session"; |
| 842 | 840 |
| 843 // Disable saving pages as HTML-only, disable saving pages as HTML Complete | 841 // Disable saving pages as HTML-only, disable saving pages as HTML Complete |
| 844 // (with a directory of sub-resources). Enable only saving pages as MHTML. | 842 // (with a directory of sub-resources). Enable only saving pages as MHTML. |
| 845 // See http://crbug.com/120416 for how to remove this switch. | 843 // See http://crbug.com/120416 for how to remove this switch. |
| 846 const char kSavePageAsMHTML[] = "save-page-as-mhtml"; | 844 const char kSavePageAsMHTML[] = "save-page-as-mhtml"; |
| 847 | 845 |
| 848 // If present, safebrowsing only performs update when | 846 // If present, safebrowsing only performs update when |
| 849 // SafeBrowsingProtocolManager::ForceScheduleNextUpdate() is explicitly called. | 847 // SafeBrowsingProtocolManager::ForceScheduleNextUpdate() is explicitly called. |
| 850 // This is used for testing only. | 848 // This is used for testing only. |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1324 | 1322 |
| 1325 // ----------------------------------------------------------------------------- | 1323 // ----------------------------------------------------------------------------- |
| 1326 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1324 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1327 // | 1325 // |
| 1328 // You were going to just dump your switches here, weren't you? Instead, please | 1326 // You were going to just dump your switches here, weren't you? Instead, please |
| 1329 // put them in alphabetical order above, or in order inside the appropriate | 1327 // put them in alphabetical order above, or in order inside the appropriate |
| 1330 // ifdef at the bottom. The order should match the header. | 1328 // ifdef at the bottom. The order should match the header. |
| 1331 // ----------------------------------------------------------------------------- | 1329 // ----------------------------------------------------------------------------- |
| 1332 | 1330 |
| 1333 } // namespace switches | 1331 } // namespace switches |
| OLD | NEW |