| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 const char kEnableTouch[] = "enable-touch"; | 368 const char kEnableTouch[] = "enable-touch"; |
| 369 | 369 |
| 370 // Whether the multiple profiles feature based on the user-data-dir flag is | 370 // Whether the multiple profiles feature based on the user-data-dir flag is |
| 371 // enabled or not. | 371 // enabled or not. |
| 372 const char kEnableUserDataDirProfiles[] = "enable-udd-profiles"; | 372 const char kEnableUserDataDirProfiles[] = "enable-udd-profiles"; |
| 373 | 373 |
| 374 // Enables the option to show tabs as a vertical stack down the side of the | 374 // Enables the option to show tabs as a vertical stack down the side of the |
| 375 // browser window. | 375 // browser window. |
| 376 const char kEnableVerticalTabs[] = "enable-vertical-tabs"; | 376 const char kEnableVerticalTabs[] = "enable-vertical-tabs"; |
| 377 | 377 |
| 378 // Enables support for fullscreen video. Current implementation is |
| 379 // incomplete and this flag is used for development and testing. |
| 380 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; |
| 381 |
| 378 // Enables video layering where video is rendered as a separate layer outside | 382 // Enables video layering where video is rendered as a separate layer outside |
| 379 // of the backing store. | 383 // of the backing store. |
| 380 const char kEnableVideoLayering[] = "enable-video-layering"; | 384 const char kEnableVideoLayering[] = "enable-video-layering"; |
| 381 | 385 |
| 382 // Enables video logging where video elements log playback performance data to | 386 // Enables video logging where video elements log playback performance data to |
| 383 // the debug log. | 387 // the debug log. |
| 384 const char kEnableVideoLogging[] = "enable-video-logging"; | 388 const char kEnableVideoLogging[] = "enable-video-logging"; |
| 385 | 389 |
| 386 // Spawn threads to watch for excessive delays in specified message loops. | 390 // Spawn threads to watch for excessive delays in specified message loops. |
| 387 // User should set breakpoints on Alarm() to examine problematic thread. | 391 // User should set breakpoints on Alarm() to examine problematic thread. |
| (...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 986 | 990 |
| 987 // ----------------------------------------------------------------------------- | 991 // ----------------------------------------------------------------------------- |
| 988 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 992 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 989 // | 993 // |
| 990 // You were going to just dump your switches here, weren't you? Instead, | 994 // You were going to just dump your switches here, weren't you? Instead, |
| 991 // please put them in alphabetical order above, or in order inside the | 995 // please put them in alphabetical order above, or in order inside the |
| 992 // appropriate ifdef at the bottom. The order should match the header. | 996 // appropriate ifdef at the bottom. The order should match the header. |
| 993 // ----------------------------------------------------------------------------- | 997 // ----------------------------------------------------------------------------- |
| 994 | 998 |
| 995 } // namespace switches | 999 } // namespace switches |
| OLD | NEW |