| 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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 // Enable Privet storage. | 531 // Enable Privet storage. |
| 532 const char kEnablePrivetStorage[] = "enable-privet-storage"; | 532 const char kEnablePrivetStorage[] = "enable-privet-storage"; |
| 533 | 533 |
| 534 // Enables tracking of tasks in profiler for viewing via about:profiler. | 534 // Enables tracking of tasks in profiler for viewing via about:profiler. |
| 535 // To predominantly disable tracking (profiling), use the command line switch: | 535 // To predominantly disable tracking (profiling), use the command line switch: |
| 536 // --enable-profiling=0 | 536 // --enable-profiling=0 |
| 537 // Some tracking will still take place at startup, but it will be turned off | 537 // Some tracking will still take place at startup, but it will be turned off |
| 538 // during chrome_browser_main. | 538 // during chrome_browser_main. |
| 539 const char kEnableProfiling[] = "enable-profiling"; | 539 const char kEnableProfiling[] = "enable-profiling"; |
| 540 | 540 |
| 541 // Enables showing a prominent UI for initiating the URL app creation flow. | |
| 542 const char kEnableProminentURLAppFlow[] = "enable-prominent-url-app-flow"; | |
| 543 | |
| 544 // Enables query in the omnibox. | 541 // Enables query in the omnibox. |
| 545 const char kEnableQueryExtraction[] = "enable-query-extraction"; | 542 const char kEnableQueryExtraction[] = "enable-query-extraction"; |
| 546 | 543 |
| 547 // Enables support for the QUIC protocol. This is a temporary testing flag. | 544 // Enables support for the QUIC protocol. This is a temporary testing flag. |
| 548 const char kEnableQuic[] = "enable-quic"; | 545 const char kEnableQuic[] = "enable-quic"; |
| 549 | 546 |
| 550 // Disable use of pacing of QUIC packets. | 547 // Disable use of pacing of QUIC packets. |
| 551 // This only has an effect if QUIC protocol is enabled. | 548 // This only has an effect if QUIC protocol is enabled. |
| 552 const char kEnableQuicPacing[] = "enable-quic-pacing"; | 549 const char kEnableQuicPacing[] = "enable-quic-pacing"; |
| 553 | 550 |
| (...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1375 | 1372 |
| 1376 // ----------------------------------------------------------------------------- | 1373 // ----------------------------------------------------------------------------- |
| 1377 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1374 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1378 // | 1375 // |
| 1379 // You were going to just dump your switches here, weren't you? Instead, please | 1376 // You were going to just dump your switches here, weren't you? Instead, please |
| 1380 // put them in alphabetical order above, or in order inside the appropriate | 1377 // put them in alphabetical order above, or in order inside the appropriate |
| 1381 // ifdef at the bottom. The order should match the header. | 1378 // ifdef at the bottom. The order should match the header. |
| 1382 // ----------------------------------------------------------------------------- | 1379 // ----------------------------------------------------------------------------- |
| 1383 | 1380 |
| 1384 } // namespace switches | 1381 } // namespace switches |
| OLD | NEW |