| 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 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 | 539 |
| 540 // Passes gpu device_id from browser process to GPU process. | 540 // Passes gpu device_id from browser process to GPU process. |
| 541 const char kGpuDeviceID[] = "gpu-device-id"; | 541 const char kGpuDeviceID[] = "gpu-device-id"; |
| 542 | 542 |
| 543 // Passes gpu driver_vendor from browser process to GPU process. | 543 // Passes gpu driver_vendor from browser process to GPU process. |
| 544 const char kGpuDriverVendor[] = "gpu-driver-vendor"; | 544 const char kGpuDriverVendor[] = "gpu-driver-vendor"; |
| 545 | 545 |
| 546 // Passes gpu driver_version from browser process to GPU process. | 546 // Passes gpu driver_version from browser process to GPU process. |
| 547 const char kGpuDriverVersion[] = "gpu-driver-version"; | 547 const char kGpuDriverVersion[] = "gpu-driver-version"; |
| 548 | 548 |
| 549 // Passes gpu driver_date from browser process to GPU process. |
| 550 const char kGpuDriverDate[] = "gpu-driver-date"; |
| 551 |
| 549 // Extra command line options for launching the GPU process (normally used | 552 // Extra command line options for launching the GPU process (normally used |
| 550 // for debugging). Use like renderer-cmd-prefix. | 553 // for debugging). Use like renderer-cmd-prefix. |
| 551 const char kGpuLauncher[] = "gpu-launcher"; | 554 const char kGpuLauncher[] = "gpu-launcher"; |
| 552 | 555 |
| 553 // Makes this process a GPU sub-process. | 556 // Makes this process a GPU sub-process. |
| 554 const char kGpuProcess[] = "gpu-process"; | 557 const char kGpuProcess[] = "gpu-process"; |
| 555 | 558 |
| 556 // Allows shmat() system call in the GPU sandbox. | 559 // Allows shmat() system call in the GPU sandbox. |
| 557 const char kGpuSandboxAllowSysVShm[] = "gpu-sandbox-allow-sysv-shm"; | 560 const char kGpuSandboxAllowSysVShm[] = "gpu-sandbox-allow-sysv-shm"; |
| 558 | 561 |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1051 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1054 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1052 | 1055 |
| 1053 // Enables the exporting of the tracing events to ETW. This is only supported on | 1056 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1054 // Windows Vista and later. | 1057 // Windows Vista and later. |
| 1055 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1058 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1056 #endif | 1059 #endif |
| 1057 | 1060 |
| 1058 // Don't dump stuff here, follow the same order as the header. | 1061 // Don't dump stuff here, follow the same order as the header. |
| 1059 | 1062 |
| 1060 } // namespace switches | 1063 } // namespace switches |
| OLD | NEW |