| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1263 | 1263 |
| 1264 // Forcibly disables Lion-style on newer OSes, to allow developers to test the | 1264 // Forcibly disables Lion-style on newer OSes, to allow developers to test the |
| 1265 // older, SnowLeopard-style fullscreen. | 1265 // older, SnowLeopard-style fullscreen. |
| 1266 const char kDisableSystemFullscreenForTesting[] = | 1266 const char kDisableSystemFullscreenForTesting[] = |
| 1267 "disable-system-fullscreen-for-testing"; | 1267 "disable-system-fullscreen-for-testing"; |
| 1268 | 1268 |
| 1269 // A process type (switches::kProcessType) that relaunches the browser. See | 1269 // A process type (switches::kProcessType) that relaunches the browser. See |
| 1270 // chrome/browser/mac/relauncher.h. | 1270 // chrome/browser/mac/relauncher.h. |
| 1271 const char kRelauncherProcess[] = "relauncher"; | 1271 const char kRelauncherProcess[] = "relauncher"; |
| 1272 | 1272 |
| 1273 // This is how the metrics client ID is passed from the browser process to its |
| 1274 // children. With Crashpad, the metrics client ID is distinct from the crash |
| 1275 // client ID. |
| 1276 const char kMetricsClientID[] = "metrics-client-id"; |
| 1277 |
| 1273 #endif | 1278 #endif |
| 1274 | 1279 |
| 1275 // Use bubbles for content permissions requests instead of infobars. | 1280 // Use bubbles for content permissions requests instead of infobars. |
| 1276 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles"; | 1281 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles"; |
| 1277 | 1282 |
| 1278 #if defined(OS_WIN) | 1283 #if defined(OS_WIN) |
| 1279 // Fallback to XPS. By default connector uses CDD. | 1284 // Fallback to XPS. By default connector uses CDD. |
| 1280 const char kEnableCloudPrintXps[] = "enable-cloud-print-xps"; | 1285 const char kEnableCloudPrintXps[] = "enable-cloud-print-xps"; |
| 1281 | 1286 |
| 1282 // Force-enables the profile shortcut manager. This is needed for tests since | 1287 // Force-enables the profile shortcut manager. This is needed for tests since |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1382 | 1387 |
| 1383 // ----------------------------------------------------------------------------- | 1388 // ----------------------------------------------------------------------------- |
| 1384 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1385 // | 1390 // |
| 1386 // You were going to just dump your switches here, weren't you? Instead, please | 1391 // You were going to just dump your switches here, weren't you? Instead, please |
| 1387 // put them in alphabetical order above, or in order inside the appropriate | 1392 // put them in alphabetical order above, or in order inside the appropriate |
| 1388 // ifdef at the bottom. The order should match the header. | 1393 // ifdef at the bottom. The order should match the header. |
| 1389 // ----------------------------------------------------------------------------- | 1394 // ----------------------------------------------------------------------------- |
| 1390 | 1395 |
| 1391 } // namespace switches | 1396 } // namespace switches |
| OLD | NEW |