| 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 #include "ppapi/features/features.h" | 10 #include "ppapi/features/features.h" |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 // given file. The file is overwritten if it exists. | 304 // given file. The file is overwritten if it exists. |
| 305 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; | 305 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; |
| 306 | 306 |
| 307 // Overrides the path of Easy Unlock component app. | 307 // Overrides the path of Easy Unlock component app. |
| 308 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; | 308 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; |
| 309 | 309 |
| 310 // Enables the display of a banner allowing the user to add a web | 310 // Enables the display of a banner allowing the user to add a web |
| 311 // app to their shelf (or platform-specific equivalent) | 311 // app to their shelf (or platform-specific equivalent) |
| 312 const char kEnableAddToShelf[] = "enable-add-to-shelf"; | 312 const char kEnableAddToShelf[] = "enable-add-to-shelf"; |
| 313 | 313 |
| 314 // Enable OS integration for Chrome app file associations. | |
| 315 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; | |
| 316 | |
| 317 // If the WebRTC logging private API is active, enables audio debug recordings. | 314 // If the WebRTC logging private API is active, enables audio debug recordings. |
| 318 const char kEnableAudioDebugRecordingsFromExtension[] = | 315 const char kEnableAudioDebugRecordingsFromExtension[] = |
| 319 "enable-audio-debug-recordings-from-extension"; | 316 "enable-audio-debug-recordings-from-extension"; |
| 320 | 317 |
| 321 // Enables the benchmarking extensions. | 318 // Enables the benchmarking extensions. |
| 322 const char kEnableBenchmarking[] = "enable-benchmarking"; | 319 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 323 | 320 |
| 324 // Enables the multi-level undo system for bookmarks. | 321 // Enables the multi-level undo system for bookmarks. |
| 325 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; | 322 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; |
| 326 | 323 |
| (...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1229 | 1226 |
| 1230 // ----------------------------------------------------------------------------- | 1227 // ----------------------------------------------------------------------------- |
| 1231 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1228 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1232 // | 1229 // |
| 1233 // You were going to just dump your switches here, weren't you? Instead, please | 1230 // You were going to just dump your switches here, weren't you? Instead, please |
| 1234 // put them in alphabetical order above, or in order inside the appropriate | 1231 // put them in alphabetical order above, or in order inside the appropriate |
| 1235 // ifdef at the bottom. The order should match the header. | 1232 // ifdef at the bottom. The order should match the header. |
| 1236 // ----------------------------------------------------------------------------- | 1233 // ----------------------------------------------------------------------------- |
| 1237 | 1234 |
| 1238 } // namespace switches | 1235 } // namespace switches |
| OLD | NEW |