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 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1025 | 1025 |
1026 // Specifies the user which is already logged in. | 1026 // Specifies the user which is already logged in. |
1027 const char kLoginUser[] = "login-user"; | 1027 const char kLoginUser[] = "login-user"; |
1028 | 1028 |
1029 // Use the frame layout used in chromeos. | 1029 // Use the frame layout used in chromeos. |
1030 const char kChromeosFrame[] = "chromeos-frame"; | 1030 const char kChromeosFrame[] = "chromeos-frame"; |
1031 | 1031 |
1032 // Set logging output to the given file. | 1032 // Set logging output to the given file. |
1033 const char kChromeosLogToFile[] = "logtofile"; | 1033 const char kChromeosLogToFile[] = "logtofile"; |
1034 | 1034 |
1035 // Specify startup customization manifest. | |
1036 // TODO(denisromanov): delete this when not needed for testing. | |
1037 const char kStartupManifest[] = "startup-manifest"; | |
1038 | |
1039 // Specify services customization manifest. | |
1040 // TODO(denisromanov): delete this when not needed for testing. | |
1041 const char kServicesManifest[] = "services-manifest"; | |
1042 | |
1043 // Indicates that the browser is in "browse without sign-in" mode. | 1035 // Indicates that the browser is in "browse without sign-in" mode. |
1044 // Should completely disable extensions, sync and bookmarks. | 1036 // Should completely disable extensions, sync and bookmarks. |
1045 const char kBWSI[] = "bwsi"; | 1037 const char kBWSI[] = "bwsi"; |
1046 | 1038 |
1047 #endif | 1039 #endif |
1048 | 1040 |
1049 #if defined(OS_LINUX) | 1041 #if defined(OS_LINUX) |
1050 // Specify the amount the trackpad should scroll by. | 1042 // Specify the amount the trackpad should scroll by. |
1051 const char kScrollPixels[] = "scroll-pixels"; | 1043 const char kScrollPixels[] = "scroll-pixels"; |
1052 #endif | 1044 #endif |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1130 | 1122 |
1131 // ----------------------------------------------------------------------------- | 1123 // ----------------------------------------------------------------------------- |
1132 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1124 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1133 // | 1125 // |
1134 // You were going to just dump your switches here, weren't you? Instead, | 1126 // You were going to just dump your switches here, weren't you? Instead, |
1135 // please put them in alphabetical order above, or in order inside the | 1127 // please put them in alphabetical order above, or in order inside the |
1136 // appropriate ifdef at the bottom. The order should match the header. | 1128 // appropriate ifdef at the bottom. The order should match the header. |
1137 // ----------------------------------------------------------------------------- | 1129 // ----------------------------------------------------------------------------- |
1138 | 1130 |
1139 } // namespace switches | 1131 } // namespace switches |
OLD | NEW |