| 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 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 1300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1311 const char kScreenSaverUrl[] = "screen-saver-url"; | 1311 const char kScreenSaverUrl[] = "screen-saver-url"; |
| 1312 | 1312 |
| 1313 // Flag to trigger ChromeOS system log compression during feedback submit. | 1313 // Flag to trigger ChromeOS system log compression during feedback submit. |
| 1314 const char kCompressSystemFeedback[] = "compress-sys-feedback"; | 1314 const char kCompressSystemFeedback[] = "compress-sys-feedback"; |
| 1315 | 1315 |
| 1316 // Forces usage of libcros stub implementation. For testing purposes, this | 1316 // Forces usage of libcros stub implementation. For testing purposes, this |
| 1317 // switch separates chrome code from the rest of ChromeOS. | 1317 // switch separates chrome code from the rest of ChromeOS. |
| 1318 const char kForceStubLibcros[] = "force-stub-libcros"; | 1318 const char kForceStubLibcros[] = "force-stub-libcros"; |
| 1319 | 1319 |
| 1320 // Enables WebUI menu. | 1320 // Enables WebUI menu. |
| 1321 const char kEnableDOMUIMenu[] = "enable-domui-menu"; | 1321 const char kEnableWebUIMenu[] = "enable-domui-menu"; |
| 1322 | 1322 |
| 1323 // Enables Media Player. | 1323 // Enables Media Player. |
| 1324 const char kEnableMediaPlayer[] = "enable-media-player"; | 1324 const char kEnableMediaPlayer[] = "enable-media-player"; |
| 1325 | 1325 |
| 1326 // Enables Advanced File System. | 1326 // Enables Advanced File System. |
| 1327 const char kEnableAdvancedFileSystem[] = "enable-advanced-fs"; | 1327 const char kEnableAdvancedFileSystem[] = "enable-advanced-fs"; |
| 1328 #endif | 1328 #endif |
| 1329 | 1329 |
| 1330 #if defined(OS_LINUX) | 1330 #if defined(OS_LINUX) |
| 1331 // Specify the amount the trackpad should scroll by. | 1331 // Specify the amount the trackpad should scroll by. |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1417 | 1417 |
| 1418 // ----------------------------------------------------------------------------- | 1418 // ----------------------------------------------------------------------------- |
| 1419 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1419 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1420 // | 1420 // |
| 1421 // You were going to just dump your switches here, weren't you? Instead, | 1421 // You were going to just dump your switches here, weren't you? Instead, |
| 1422 // please put them in alphabetical order above, or in order inside the | 1422 // please put them in alphabetical order above, or in order inside the |
| 1423 // appropriate ifdef at the bottom. The order should match the header. | 1423 // appropriate ifdef at the bottom. The order should match the header. |
| 1424 // ----------------------------------------------------------------------------- | 1424 // ----------------------------------------------------------------------------- |
| 1425 | 1425 |
| 1426 } // namespace switches | 1426 } // namespace switches |
| OLD | NEW |