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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; | 363 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; |
364 | 364 |
365 // Enables the display of a banner allowing the user to add a web | 365 // Enables the display of a banner allowing the user to add a web |
366 // app to their shelf (or platform-specific equivalent) | 366 // app to their shelf (or platform-specific equivalent) |
367 const char kEnableAddToShelf[] = "enable-add-to-shelf"; | 367 const char kEnableAddToShelf[] = "enable-add-to-shelf"; |
368 | 368 |
369 #if defined(OS_ANDROID) | 369 #if defined(OS_ANDROID) |
370 const char kEnableAppLink[] = "enable-app-link"; | 370 const char kEnableAppLink[] = "enable-app-link"; |
371 #endif | 371 #endif |
372 | 372 |
| 373 // Enables all bookmarks view in bookmark manager. |
| 374 const char kEnableAllBookmarksView[] = "enable-all-bookmarks-view"; |
| 375 |
373 // Enable OS integration for Chrome app file associations. | 376 // Enable OS integration for Chrome app file associations. |
374 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; | 377 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; |
375 | 378 |
376 // If the WebRTC logging private API is active, enables audio debug recordings. | 379 // If the WebRTC logging private API is active, enables audio debug recordings. |
377 const char kEnableAudioDebugRecordingsFromExtension[] = | 380 const char kEnableAudioDebugRecordingsFromExtension[] = |
378 "enable-audio-debug-recordings-from-extension"; | 381 "enable-audio-debug-recordings-from-extension"; |
379 | 382 |
380 // Enables the benchmarking extensions. | 383 // Enables the benchmarking extensions. |
381 const char kEnableBenchmarking[] = "enable-benchmarking"; | 384 const char kEnableBenchmarking[] = "enable-benchmarking"; |
382 | 385 |
(...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1360 | 1363 |
1361 // ----------------------------------------------------------------------------- | 1364 // ----------------------------------------------------------------------------- |
1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1365 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1363 // | 1366 // |
1364 // You were going to just dump your switches here, weren't you? Instead, please | 1367 // You were going to just dump your switches here, weren't you? Instead, please |
1365 // put them in alphabetical order above, or in order inside the appropriate | 1368 // put them in alphabetical order above, or in order inside the appropriate |
1366 // ifdef at the bottom. The order should match the header. | 1369 // ifdef at the bottom. The order should match the header. |
1367 // ----------------------------------------------------------------------------- | 1370 // ----------------------------------------------------------------------------- |
1368 | 1371 |
1369 } // namespace switches | 1372 } // namespace switches |
OLD | NEW |