| 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 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1275 | 1275 |
| 1276 // Forcibly disables Lion-style on newer OSes, to allow developers to test the | 1276 // Forcibly disables Lion-style on newer OSes, to allow developers to test the |
| 1277 // older, SnowLeopard-style fullscreen. | 1277 // older, SnowLeopard-style fullscreen. |
| 1278 const char kDisableSystemFullscreenForTesting[] = | 1278 const char kDisableSystemFullscreenForTesting[] = |
| 1279 "disable-system-fullscreen-for-testing"; | 1279 "disable-system-fullscreen-for-testing"; |
| 1280 | 1280 |
| 1281 // A process type (switches::kProcessType) that relaunches the browser. See | 1281 // A process type (switches::kProcessType) that relaunches the browser. See |
| 1282 // chrome/browser/mac/relauncher.h. | 1282 // chrome/browser/mac/relauncher.h. |
| 1283 const char kRelauncherProcess[] = "relauncher"; | 1283 const char kRelauncherProcess[] = "relauncher"; |
| 1284 | 1284 |
| 1285 // This is how the metrics client ID is passed from the browser process to its |
| 1286 // children. With Crashpad, the metrics client ID is distinct from the crash |
| 1287 // client ID. |
| 1288 const char kMetricsClientID[] = "metrics-client-id"; |
| 1289 |
| 1285 #endif | 1290 #endif |
| 1286 | 1291 |
| 1287 // Use bubbles for content permissions requests instead of infobars. | 1292 // Use bubbles for content permissions requests instead of infobars. |
| 1288 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles"; | 1293 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles"; |
| 1289 | 1294 |
| 1290 #if defined(OS_WIN) | 1295 #if defined(OS_WIN) |
| 1291 // Fallback to XPS. By default connector uses CDD. | 1296 // Fallback to XPS. By default connector uses CDD. |
| 1292 const char kEnableCloudPrintXps[] = "enable-cloud-print-xps"; | 1297 const char kEnableCloudPrintXps[] = "enable-cloud-print-xps"; |
| 1293 | 1298 |
| 1294 // Force-enables the profile shortcut manager. This is needed for tests since | 1299 // Force-enables the profile shortcut manager. This is needed for tests since |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1390 | 1395 |
| 1391 // ----------------------------------------------------------------------------- | 1396 // ----------------------------------------------------------------------------- |
| 1392 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1397 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1393 // | 1398 // |
| 1394 // You were going to just dump your switches here, weren't you? Instead, please | 1399 // You were going to just dump your switches here, weren't you? Instead, please |
| 1395 // put them in alphabetical order above, or in order inside the appropriate | 1400 // put them in alphabetical order above, or in order inside the appropriate |
| 1396 // ifdef at the bottom. The order should match the header. | 1401 // ifdef at the bottom. The order should match the header. |
| 1397 // ----------------------------------------------------------------------------- | 1402 // ----------------------------------------------------------------------------- |
| 1398 | 1403 |
| 1399 } // namespace switches | 1404 } // namespace switches |
| OLD | NEW |