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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 const char kDiagnosticsRecovery[] = "diagnostics-recovery"; | 166 const char kDiagnosticsRecovery[] = "diagnostics-recovery"; |
167 | 167 |
168 // When kEnableSettingsWindow is used, About is shown as an overlay in Settings | 168 // When kEnableSettingsWindow is used, About is shown as an overlay in Settings |
169 // instead of as a separate page, unless this flag is specified. | 169 // instead of as a separate page, unless this flag is specified. |
170 const char kDisableAboutInSettings[] = "disable-about-in-settings"; | 170 const char kDisableAboutInSettings[] = "disable-about-in-settings"; |
171 | 171 |
172 // Disables the display of a banner allowing the user to add a web | 172 // Disables the display of a banner allowing the user to add a web |
173 // app to their shelf (or platform-specific equivalent) | 173 // app to their shelf (or platform-specific equivalent) |
174 const char kDisableAddToShelf[] = "disable-add-to-shelf"; | 174 const char kDisableAddToShelf[] = "disable-add-to-shelf"; |
175 | 175 |
176 // Disables the experimental asynchronous DNS client. | |
177 const char kDisableAsyncDns[] = "disable-async-dns"; | |
178 | |
179 // Disable several subsystems which run network requests in the background. | 176 // Disable several subsystems which run network requests in the background. |
180 // This is for use when doing network performance testing to avoid noise in the | 177 // This is for use when doing network performance testing to avoid noise in the |
181 // measurements. | 178 // measurements. |
182 const char kDisableBackgroundNetworking[] = "disable-background-networking"; | 179 const char kDisableBackgroundNetworking[] = "disable-background-networking"; |
183 | 180 |
184 // Disables the bundled PPAPI version of Flash. | 181 // Disables the bundled PPAPI version of Flash. |
185 const char kDisableBundledPpapiFlash[] = "disable-bundled-ppapi-flash"; | 182 const char kDisableBundledPpapiFlash[] = "disable-bundled-ppapi-flash"; |
186 | 183 |
187 // Disable hardware encoding support for Cast Streaming. | 184 // Disable hardware encoding support for Cast Streaming. |
188 const char kDisableCastStreamingHWEncoding[] = | 185 const char kDisableCastStreamingHWEncoding[] = |
(...skipping 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1341 | 1338 |
1342 // ----------------------------------------------------------------------------- | 1339 // ----------------------------------------------------------------------------- |
1343 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1340 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
1344 // | 1341 // |
1345 // You were going to just dump your switches here, weren't you? Instead, please | 1342 // You were going to just dump your switches here, weren't you? Instead, please |
1346 // put them in alphabetical order above, or in order inside the appropriate | 1343 // put them in alphabetical order above, or in order inside the appropriate |
1347 // ifdef at the bottom. The order should match the header. | 1344 // ifdef at the bottom. The order should match the header. |
1348 // ----------------------------------------------------------------------------- | 1345 // ----------------------------------------------------------------------------- |
1349 | 1346 |
1350 } // namespace switches | 1347 } // namespace switches |
OLD | NEW |