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