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 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 const char kDnsLogDetails[] = "dns-log-details"; | 391 const char kDnsLogDetails[] = "dns-log-details"; |
392 | 392 |
393 // Disables prefetching of DNS information. | 393 // Disables prefetching of DNS information. |
394 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; | 394 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; |
395 | 395 |
396 // Requests that a running browser process dump its collected histograms to a | 396 // Requests that a running browser process dump its collected histograms to a |
397 // given file. The file is overwritten if it exists. | 397 // given file. The file is overwritten if it exists. |
398 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; | 398 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; |
399 | 399 |
400 // Overrides the path of Easy Unlock component app. | 400 // Overrides the path of Easy Unlock component app. |
401 extern const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; | 401 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; |
402 | 402 |
403 // If set, the app list will be enabled as if enabled from CWS. | 403 // If set, the app list will be enabled as if enabled from CWS. |
404 const char kEnableAppList[] = "enable-app-list"; | 404 const char kEnableAppList[] = "enable-app-list"; |
405 | 405 |
406 // Enable OS integration for Chrome app file associations. | 406 // Enable OS integration for Chrome app file associations. |
407 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; | 407 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; |
408 | 408 |
409 // Enables the experimental asynchronous DNS client. | 409 // Enables the experimental asynchronous DNS client. |
410 const char kEnableAsyncDns[] = "enable-async-dns"; | 410 const char kEnableAsyncDns[] = "enable-async-dns"; |
411 | 411 |
(...skipping 982 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1394 | 1394 |
1395 // ----------------------------------------------------------------------------- | 1395 // ----------------------------------------------------------------------------- |
1396 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1396 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1397 // | 1397 // |
1398 // You were going to just dump your switches here, weren't you? Instead, please | 1398 // You were going to just dump your switches here, weren't you? Instead, please |
1399 // put them in alphabetical order above, or in order inside the appropriate | 1399 // put them in alphabetical order above, or in order inside the appropriate |
1400 // ifdef at the bottom. The order should match the header. | 1400 // ifdef at the bottom. The order should match the header. |
1401 // ----------------------------------------------------------------------------- | 1401 // ----------------------------------------------------------------------------- |
1402 | 1402 |
1403 } // namespace switches | 1403 } // namespace switches |
OLD | NEW |