| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 // Enable OS integration for Chrome app file associations. | 375 // Enable OS integration for Chrome app file associations. |
| 376 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; | 376 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; |
| 377 | 377 |
| 378 // If the WebRTC logging private API is active, enables audio debug recordings. |
| 379 const char kEnableAudioDebugRecordingsFromExtension[] = |
| 380 "enable-audio-debug-recordings-from-extension"; |
| 381 |
| 378 // Enables the benchmarking extensions. | 382 // Enables the benchmarking extensions. |
| 379 const char kEnableBenchmarking[] = "enable-benchmarking"; | 383 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 380 | 384 |
| 381 // Enables the multi-level undo system for bookmarks. | 385 // Enables the multi-level undo system for bookmarks. |
| 382 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; | 386 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; |
| 383 | 387 |
| 384 // Enables detection of child accounts. | 388 // Enables detection of child accounts. |
| 385 const char kEnableChildAccountDetection[] = | 389 const char kEnableChildAccountDetection[] = |
| 386 "enable-child-account-detection"; | 390 "enable-child-account-detection"; |
| 387 | 391 |
| (...skipping 988 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1376 | 1380 |
| 1377 // ----------------------------------------------------------------------------- | 1381 // ----------------------------------------------------------------------------- |
| 1378 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1379 // | 1383 // |
| 1380 // You were going to just dump your switches here, weren't you? Instead, please | 1384 // You were going to just dump your switches here, weren't you? Instead, please |
| 1381 // put them in alphabetical order above, or in order inside the appropriate | 1385 // put them in alphabetical order above, or in order inside the appropriate |
| 1382 // ifdef at the bottom. The order should match the header. | 1386 // ifdef at the bottom. The order should match the header. |
| 1383 // ----------------------------------------------------------------------------- | 1387 // ----------------------------------------------------------------------------- |
| 1384 | 1388 |
| 1385 } // namespace switches | 1389 } // namespace switches |
| OLD | NEW |