| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "ios/chrome/browser/chrome_switches.h" | 5 #include "ios/chrome/browser/chrome_switches.h" |
| 6 | 6 |
| 7 namespace switches { | 7 namespace switches { |
| 8 | 8 |
| 9 // ----------------------------------------------------------------------------- | 9 // ----------------------------------------------------------------------------- |
| 10 // When commenting your switch, please use the same voice as surrounding | 10 // When commenting your switch, please use the same voice as surrounding |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 // These mappings only apply to the host resolver. | 108 // These mappings only apply to the host resolver. |
| 109 const char kIOSHostResolverRules[] = "host-resolver-rules"; | 109 const char kIOSHostResolverRules[] = "host-resolver-rules"; |
| 110 | 110 |
| 111 // Ignores certificate-related errors. | 111 // Ignores certificate-related errors. |
| 112 const char kIOSIgnoreCertificateErrors[] = "ignore-certificate-errors"; | 112 const char kIOSIgnoreCertificateErrors[] = "ignore-certificate-errors"; |
| 113 | 113 |
| 114 // Allows for forcing socket connections to http/https to use fixed ports. | 114 // Allows for forcing socket connections to http/https to use fixed ports. |
| 115 const char kIOSTestingFixedHttpPort[] = "testing-fixed-http-port"; | 115 const char kIOSTestingFixedHttpPort[] = "testing-fixed-http-port"; |
| 116 const char kIOSTestingFixedHttpsPort[] = "testing-fixed-https-port"; | 116 const char kIOSTestingFixedHttpsPort[] = "testing-fixed-https-port"; |
| 117 | 117 |
| 118 // Enables grouping websites by domain and filtering them by period. | |
| 119 const char kHistoryEnableGroupByDomain[] = "enable-grouped-history"; | |
| 120 | |
| 121 } // namespace switches | 118 } // namespace switches |
| OLD | NEW |