| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 | 535 |
| 536 // Passes gpu device_id from browser process to GPU process. | 536 // Passes gpu device_id from browser process to GPU process. |
| 537 const char kGpuDeviceID[] = "gpu-device-id"; | 537 const char kGpuDeviceID[] = "gpu-device-id"; |
| 538 | 538 |
| 539 // Passes gpu driver_vendor from browser process to GPU process. | 539 // Passes gpu driver_vendor from browser process to GPU process. |
| 540 const char kGpuDriverVendor[] = "gpu-driver-vendor"; | 540 const char kGpuDriverVendor[] = "gpu-driver-vendor"; |
| 541 | 541 |
| 542 // Passes gpu driver_version from browser process to GPU process. | 542 // Passes gpu driver_version from browser process to GPU process. |
| 543 const char kGpuDriverVersion[] = "gpu-driver-version"; | 543 const char kGpuDriverVersion[] = "gpu-driver-version"; |
| 544 | 544 |
| 545 // Passes gpu driver_date from browser process to GPU process. |
| 546 const char kGpuDriverDate[] = "gpu-driver-date"; |
| 547 |
| 545 // Extra command line options for launching the GPU process (normally used | 548 // Extra command line options for launching the GPU process (normally used |
| 546 // for debugging). Use like renderer-cmd-prefix. | 549 // for debugging). Use like renderer-cmd-prefix. |
| 547 const char kGpuLauncher[] = "gpu-launcher"; | 550 const char kGpuLauncher[] = "gpu-launcher"; |
| 548 | 551 |
| 549 // Makes this process a GPU sub-process. | 552 // Makes this process a GPU sub-process. |
| 550 const char kGpuProcess[] = "gpu-process"; | 553 const char kGpuProcess[] = "gpu-process"; |
| 551 | 554 |
| 552 // Allows shmat() system call in the GPU sandbox. | 555 // Allows shmat() system call in the GPU sandbox. |
| 553 const char kGpuSandboxAllowSysVShm[] = "gpu-sandbox-allow-sysv-shm"; | 556 const char kGpuSandboxAllowSysVShm[] = "gpu-sandbox-allow-sysv-shm"; |
| 554 | 557 |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1015 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1018 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1016 | 1019 |
| 1017 // Enables the exporting of the tracing events to ETW. This is only supported on | 1020 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1018 // Windows Vista and later. | 1021 // Windows Vista and later. |
| 1019 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1022 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1020 #endif | 1023 #endif |
| 1021 | 1024 |
| 1022 // Don't dump stuff here, follow the same order as the header. | 1025 // Don't dump stuff here, follow the same order as the header. |
| 1023 | 1026 |
| 1024 } // namespace switches | 1027 } // namespace switches |
| OLD | NEW |