OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1121 // URL of the html page for Screen Saver. | 1121 // URL of the html page for Screen Saver. |
1122 const char kScreenSaverUrl[] = "screen-saver-url"; | 1122 const char kScreenSaverUrl[] = "screen-saver-url"; |
1123 | 1123 |
1124 // Flag to trigger ChromeOS system log compression during feedback submit. | 1124 // Flag to trigger ChromeOS system log compression during feedback submit. |
1125 const char kCompressSystemFeedback[] = "compress-sys-feedback"; | 1125 const char kCompressSystemFeedback[] = "compress-sys-feedback"; |
1126 | 1126 |
1127 // Forces usage of libcros stub implementation. For testing purposes, this | 1127 // Forces usage of libcros stub implementation. For testing purposes, this |
1128 // switch separates chrome code from the rest of ChromeOS. | 1128 // switch separates chrome code from the rest of ChromeOS. |
1129 const char kForceStubLibcros[] = "force-stub-libcros"; | 1129 const char kForceStubLibcros[] = "force-stub-libcros"; |
1130 | 1130 |
1131 // Enables WebUI menu. | |
1132 const char kEnableWebUIMenu[] = "enable-webui-menu"; | |
1133 | |
1134 // Enables Media Player. | 1131 // Enables Media Player. |
1135 const char kEnableMediaPlayer[] = "enable-media-player"; | 1132 const char kEnableMediaPlayer[] = "enable-media-player"; |
1136 | 1133 |
1137 // Enables Advanced File System. | 1134 // Enables Advanced File System. |
1138 const char kEnableAdvancedFileSystem[] = "enable-advanced-fs"; | 1135 const char kEnableAdvancedFileSystem[] = "enable-advanced-fs"; |
1139 #endif | 1136 #endif |
1140 | 1137 |
1141 #if defined(OS_LINUX) | 1138 #if defined(OS_LINUX) |
1142 // Specify the amount the trackpad should scroll by. | 1139 // Specify the amount the trackpad should scroll by. |
1143 const char kScrollPixels[] = "scroll-pixels"; | 1140 const char kScrollPixels[] = "scroll-pixels"; |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1201 | 1198 |
1202 // ----------------------------------------------------------------------------- | 1199 // ----------------------------------------------------------------------------- |
1203 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1200 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1204 // | 1201 // |
1205 // You were going to just dump your switches here, weren't you? Instead, | 1202 // You were going to just dump your switches here, weren't you? Instead, |
1206 // please put them in alphabetical order above, or in order inside the | 1203 // please put them in alphabetical order above, or in order inside the |
1207 // appropriate ifdef at the bottom. The order should match the header. | 1204 // appropriate ifdef at the bottom. The order should match the header. |
1208 // ----------------------------------------------------------------------------- | 1205 // ----------------------------------------------------------------------------- |
1209 | 1206 |
1210 } // namespace switches | 1207 } // namespace switches |
OLD | NEW |