| 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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 // Enable Privet storage. | 523 // Enable Privet storage. |
| 524 const char kEnablePrivetStorage[] = "enable-privet-storage"; | 524 const char kEnablePrivetStorage[] = "enable-privet-storage"; |
| 525 | 525 |
| 526 // Enables tracking of tasks in profiler for viewing via about:profiler. | 526 // Enables tracking of tasks in profiler for viewing via about:profiler. |
| 527 // To predominantly disable tracking (profiling), use the command line switch: | 527 // To predominantly disable tracking (profiling), use the command line switch: |
| 528 // --enable-profiling=0 | 528 // --enable-profiling=0 |
| 529 // Some tracking will still take place at startup, but it will be turned off | 529 // Some tracking will still take place at startup, but it will be turned off |
| 530 // during chrome_browser_main. | 530 // during chrome_browser_main. |
| 531 const char kEnableProfiling[] = "enable-profiling"; | 531 const char kEnableProfiling[] = "enable-profiling"; |
| 532 | 532 |
| 533 // Enables showing a prominent UI for initiating the URL app creation flow. | |
| 534 const char kEnableProminentURLAppFlow[] = "enable-prominent-url-app-flow"; | |
| 535 | |
| 536 // Enables query in the omnibox. | 533 // Enables query in the omnibox. |
| 537 const char kEnableQueryExtraction[] = "enable-query-extraction"; | 534 const char kEnableQueryExtraction[] = "enable-query-extraction"; |
| 538 | 535 |
| 539 // Enables support for the QUIC protocol. This is a temporary testing flag. | 536 // Enables support for the QUIC protocol. This is a temporary testing flag. |
| 540 const char kEnableQuic[] = "enable-quic"; | 537 const char kEnableQuic[] = "enable-quic"; |
| 541 | 538 |
| 542 // Disable use of pacing of QUIC packets. | 539 // Disable use of pacing of QUIC packets. |
| 543 // This only has an effect if QUIC protocol is enabled. | 540 // This only has an effect if QUIC protocol is enabled. |
| 544 const char kEnableQuicPacing[] = "enable-quic-pacing"; | 541 const char kEnableQuicPacing[] = "enable-quic-pacing"; |
| 545 | 542 |
| (...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1363 | 1360 |
| 1364 // ----------------------------------------------------------------------------- | 1361 // ----------------------------------------------------------------------------- |
| 1365 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1366 // | 1363 // |
| 1367 // You were going to just dump your switches here, weren't you? Instead, please | 1364 // You were going to just dump your switches here, weren't you? Instead, please |
| 1368 // put them in alphabetical order above, or in order inside the appropriate | 1365 // put them in alphabetical order above, or in order inside the appropriate |
| 1369 // ifdef at the bottom. The order should match the header. | 1366 // ifdef at the bottom. The order should match the header. |
| 1370 // ----------------------------------------------------------------------------- | 1367 // ----------------------------------------------------------------------------- |
| 1371 | 1368 |
| 1372 } // namespace switches | 1369 } // namespace switches |
| OLD | NEW |