| 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 892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 903 const char kLoginUser[] = "login-user"; | 903 const char kLoginUser[] = "login-user"; |
| 904 | 904 |
| 905 // Use the frame layout used in chromeos. | 905 // Use the frame layout used in chromeos. |
| 906 const char kChromeosFrame[] = "chromeos-frame"; | 906 const char kChromeosFrame[] = "chromeos-frame"; |
| 907 | 907 |
| 908 // Specify startup customization manifest. | 908 // Specify startup customization manifest. |
| 909 // TODO(denisromanov): delete this once it's not needed for testing anymore. | 909 // TODO(denisromanov): delete this once it's not needed for testing anymore. |
| 910 const char kStartupManifest[] = "startup-manifest"; | 910 const char kStartupManifest[] = "startup-manifest"; |
| 911 | 911 |
| 912 // Specify the amount the trackpad should scroll by. | 912 // Specify the amount the trackpad should scroll by. |
| 913 const char kVertScrollDelta[] = "vert-scroll-delta"; | 913 const char kScrollPixels[] = "scroll-pixels"; |
| 914 #endif | 914 #endif |
| 915 | 915 |
| 916 #if defined(OS_WIN) | 916 #if defined(OS_WIN) |
| 917 // Use SChannel (the system SSL library on Windows) instead of NSS for SSL. | 917 // Use SChannel (the system SSL library on Windows) instead of NSS for SSL. |
| 918 const char kUseSChannel[] = "use-schannel"; | 918 const char kUseSChannel[] = "use-schannel"; |
| 919 #endif | 919 #endif |
| 920 | 920 |
| 921 #if defined(OS_POSIX) | 921 #if defined(OS_POSIX) |
| 922 // Bypass the error dialog when the profile lock couldn't be attained. | 922 // Bypass the error dialog when the profile lock couldn't be attained. |
| 923 // A flag, generated internally by Chrome for renderer and other helper process | 923 // A flag, generated internally by Chrome for renderer and other helper process |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 990 | 990 |
| 991 // ----------------------------------------------------------------------------- | 991 // ----------------------------------------------------------------------------- |
| 992 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 992 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 993 // | 993 // |
| 994 // 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, |
| 995 // 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 |
| 996 // appropriate ifdef at the bottom. The order should match the header. | 996 // appropriate ifdef at the bottom. The order should match the header. |
| 997 // ----------------------------------------------------------------------------- | 997 // ----------------------------------------------------------------------------- |
| 998 | 998 |
| 999 } // namespace switches | 999 } // namespace switches |
| OLD | NEW |