| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 | 286 |
| 287 const char kDnsLogDetails[] = "dns-log-details"; | 287 const char kDnsLogDetails[] = "dns-log-details"; |
| 288 | 288 |
| 289 // Requests that a running browser process dump its collected histograms to a | 289 // Requests that a running browser process dump its collected histograms to a |
| 290 // given file. The file is overwritten if it exists. | 290 // given file. The file is overwritten if it exists. |
| 291 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; | 291 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; |
| 292 | 292 |
| 293 // Overrides the path of Easy Unlock component app. | 293 // Overrides the path of Easy Unlock component app. |
| 294 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; | 294 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; |
| 295 | 295 |
| 296 // Enables the display of a banner allowing the user to add a web |
| 297 // app to their shelf (or platform-specific equivalent) |
| 298 const char kEnableAddToShelf[] = "enable-add-to-shelf"; |
| 299 |
| 300 // Enables aggressive process tracking to try to catch all processes that have |
| 301 // been created. |
| 302 const char kEnableAggressiveProcessTracking[] = |
| 303 "enable-aggressive-process-tracking"; |
| 304 |
| 296 // If the WebRTC logging private API is active, enables audio debug recordings. | 305 // If the WebRTC logging private API is active, enables audio debug recordings. |
| 297 const char kEnableAudioDebugRecordingsFromExtension[] = | 306 const char kEnableAudioDebugRecordingsFromExtension[] = |
| 298 "enable-audio-debug-recordings-from-extension"; | 307 "enable-audio-debug-recordings-from-extension"; |
| 299 | 308 |
| 300 // Inform users that their browser is being controlled by an automated test. | 309 // Inform users that their browser is being controlled by an automated test. |
| 301 const char kEnableAutomation[] = "enable-automation"; | 310 const char kEnableAutomation[] = "enable-automation"; |
| 302 | 311 |
| 303 // Enables the multi-level undo system for bookmarks. | 312 // Enables the multi-level undo system for bookmarks. |
| 304 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; | 313 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; |
| 305 | 314 |
| (...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1140 | 1149 |
| 1141 // ----------------------------------------------------------------------------- | 1150 // ----------------------------------------------------------------------------- |
| 1142 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1151 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1143 // | 1152 // |
| 1144 // You were going to just dump your switches here, weren't you? Instead, please | 1153 // You were going to just dump your switches here, weren't you? Instead, please |
| 1145 // put them in alphabetical order above, or in order inside the appropriate | 1154 // put them in alphabetical order above, or in order inside the appropriate |
| 1146 // ifdef at the bottom. The order should match the header. | 1155 // ifdef at the bottom. The order should match the header. |
| 1147 // ----------------------------------------------------------------------------- | 1156 // ----------------------------------------------------------------------------- |
| 1148 | 1157 |
| 1149 } // namespace switches | 1158 } // namespace switches |
| OLD | NEW |