Chromium Code Reviews| 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 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1217 const char kStubCros[] = "stub-cros"; | 1217 const char kStubCros[] = "stub-cros"; |
| 1218 | 1218 |
| 1219 // URL of the html page for Screen Saver. | 1219 // URL of the html page for Screen Saver. |
| 1220 const char kScreenSaverUrl[] = "screen-saver-url"; | 1220 const char kScreenSaverUrl[] = "screen-saver-url"; |
| 1221 | 1221 |
| 1222 // Flag to trigger ChromeOS system log compression during feedback submit. | 1222 // Flag to trigger ChromeOS system log compression during feedback submit. |
| 1223 const char kCompressSystemFeedback[] = "compress-sys-feedback"; | 1223 const char kCompressSystemFeedback[] = "compress-sys-feedback"; |
| 1224 | 1224 |
| 1225 // Forces usage of libcros stub implementation. For testing purposes, this | 1225 // Forces usage of libcros stub implementation. For testing purposes, this |
| 1226 // switch separates chrome code from the rest of ChromeOS. | 1226 // switch separates chrome code from the rest of ChromeOS. |
| 1227 const char kForceStubLibcros[] = "force-stub-libcros"; | 1227 const char kForceStubLibcros[] = "force-stub-libcros"; |
| 1228 | 1228 |
| 1229 // Enables DOMUI menu. | 1229 // Enables DOMUI menu. |
| 1230 const char kEnableDOMUIMenu[] = "enable-domui-menu"; | 1230 const char kEnableDOMUIMenu[] = "enable-domui-menu"; |
| 1231 | 1231 |
| 1232 // Enables Media Player. | |
| 1233 const char kEnableMediaPlayer[] = "enable-media-player"; | |
| 1234 | |
| 1235 // Enables Advanced File System. | |
| 1236 const char kEnableAdvancedFileSystem[] = "enable-advanced-fs"; | |
|
Nico
2010/11/16 17:32:07
i believe the flags in this file are supposed to b
whywhat
2010/11/16 17:55:15
I think it's too late for that, especially in .cc
Nico
2010/11/16 18:01:31
Nevermind, I confused this file with another file
| |
| 1232 #endif | 1237 #endif |
| 1233 | 1238 |
| 1234 #if defined(OS_LINUX) | 1239 #if defined(OS_LINUX) |
| 1235 // Specify the amount the trackpad should scroll by. | 1240 // Specify the amount the trackpad should scroll by. |
| 1236 const char kScrollPixels[] = "scroll-pixels"; | 1241 const char kScrollPixels[] = "scroll-pixels"; |
| 1237 #endif | 1242 #endif |
| 1238 | 1243 |
| 1239 #if defined(OS_MACOSX) || defined(OS_WIN) | 1244 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 1240 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) | 1245 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) |
| 1241 // instead of NSS for SSL. | 1246 // instead of NSS for SSL. |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1323 | 1328 |
| 1324 // ----------------------------------------------------------------------------- | 1329 // ----------------------------------------------------------------------------- |
| 1325 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1330 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1326 // | 1331 // |
| 1327 // You were going to just dump your switches here, weren't you? Instead, | 1332 // You were going to just dump your switches here, weren't you? Instead, |
| 1328 // please put them in alphabetical order above, or in order inside the | 1333 // please put them in alphabetical order above, or in order inside the |
| 1329 // appropriate ifdef at the bottom. The order should match the header. | 1334 // appropriate ifdef at the bottom. The order should match the header. |
| 1330 // ----------------------------------------------------------------------------- | 1335 // ----------------------------------------------------------------------------- |
| 1331 | 1336 |
| 1332 } // namespace switches | 1337 } // namespace switches |
| OLD | NEW |