Chromium Code Reviews| 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 365 // given file. The file is overwritten if it exists. | 365 // given file. The file is overwritten if it exists. |
| 366 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; | 366 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; |
| 367 | 367 |
| 368 // Overrides the path of Easy Unlock component app. | 368 // Overrides the path of Easy Unlock component app. |
| 369 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; | 369 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; |
| 370 | 370 |
| 371 // Enables the display of a banner allowing the user to add a web | 371 // Enables the display of a banner allowing the user to add a web |
| 372 // app to their shelf (or platform-specific equivalent) | 372 // app to their shelf (or platform-specific equivalent) |
| 373 const char kEnableAddToShelf[] = "enable-add-to-shelf"; | 373 const char kEnableAddToShelf[] = "enable-add-to-shelf"; |
| 374 | 374 |
| 375 // If the WebRTC logging private API is active, enables AEC dumps. | |
| 376 const char kEnableAecDumps[] = "enable-aec-dumps"; | |
|
tommi (sloooow) - chröme
2015/12/17 11:03:26
nit: allow-aec-dumps-from-extension
Guido Urdaneta
2015/12/17 14:35:42
Done.
| |
| 377 | |
| 375 // Enable OS integration for Chrome app file associations. | 378 // Enable OS integration for Chrome app file associations. |
| 376 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; | 379 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; |
| 377 | 380 |
| 378 // Enables the benchmarking extensions. | 381 // Enables the benchmarking extensions. |
| 379 const char kEnableBenchmarking[] = "enable-benchmarking"; | 382 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 380 | 383 |
| 381 // Enables the multi-level undo system for bookmarks. | 384 // Enables the multi-level undo system for bookmarks. |
| 382 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; | 385 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; |
| 383 | 386 |
| 384 // Enables detection of child accounts. | 387 // Enables detection of child accounts. |
| (...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1389 | 1392 |
| 1390 // ----------------------------------------------------------------------------- | 1393 // ----------------------------------------------------------------------------- |
| 1391 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1394 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1392 // | 1395 // |
| 1393 // You were going to just dump your switches here, weren't you? Instead, please | 1396 // You were going to just dump your switches here, weren't you? Instead, please |
| 1394 // put them in alphabetical order above, or in order inside the appropriate | 1397 // put them in alphabetical order above, or in order inside the appropriate |
| 1395 // ifdef at the bottom. The order should match the header. | 1398 // ifdef at the bottom. The order should match the header. |
| 1396 // ----------------------------------------------------------------------------- | 1399 // ----------------------------------------------------------------------------- |
| 1397 | 1400 |
| 1398 } // namespace switches | 1401 } // namespace switches |
| OLD | NEW |