| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 // given file. The file is overwritten if it exists. | 327 // given file. The file is overwritten if it exists. |
| 328 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; | 328 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; |
| 329 | 329 |
| 330 // Overrides the path of Easy Unlock component app. | 330 // Overrides the path of Easy Unlock component app. |
| 331 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; | 331 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; |
| 332 | 332 |
| 333 // Enables the display of a banner allowing the user to add a web | 333 // Enables the display of a banner allowing the user to add a web |
| 334 // app to their shelf (or platform-specific equivalent) | 334 // app to their shelf (or platform-specific equivalent) |
| 335 const char kEnableAddToShelf[] = "enable-add-to-shelf"; | 335 const char kEnableAddToShelf[] = "enable-add-to-shelf"; |
| 336 | 336 |
| 337 // Enables all bookmarks view in bookmark manager. | |
| 338 const char kEnableAllBookmarksView[] = "enable-all-bookmarks-view"; | |
| 339 | |
| 340 // Enable OS integration for Chrome app file associations. | 337 // Enable OS integration for Chrome app file associations. |
| 341 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; | 338 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; |
| 342 | 339 |
| 343 // If the WebRTC logging private API is active, enables audio debug recordings. | 340 // If the WebRTC logging private API is active, enables audio debug recordings. |
| 344 const char kEnableAudioDebugRecordingsFromExtension[] = | 341 const char kEnableAudioDebugRecordingsFromExtension[] = |
| 345 "enable-audio-debug-recordings-from-extension"; | 342 "enable-audio-debug-recordings-from-extension"; |
| 346 | 343 |
| 347 // Enables the benchmarking extensions. | 344 // Enables the benchmarking extensions. |
| 348 const char kEnableBenchmarking[] = "enable-benchmarking"; | 345 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 349 | 346 |
| (...skipping 980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1330 | 1327 |
| 1331 // ----------------------------------------------------------------------------- | 1328 // ----------------------------------------------------------------------------- |
| 1332 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1329 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1333 // | 1330 // |
| 1334 // You were going to just dump your switches here, weren't you? Instead, please | 1331 // You were going to just dump your switches here, weren't you? Instead, please |
| 1335 // put them in alphabetical order above, or in order inside the appropriate | 1332 // put them in alphabetical order above, or in order inside the appropriate |
| 1336 // ifdef at the bottom. The order should match the header. | 1333 // ifdef at the bottom. The order should match the header. |
| 1337 // ----------------------------------------------------------------------------- | 1334 // ----------------------------------------------------------------------------- |
| 1338 | 1335 |
| 1339 } // namespace switches | 1336 } // namespace switches |
| OLD | NEW |