| Index: content/browser/gpu/gpu_process_host.cc
|
| diff --git a/content/browser/gpu/gpu_process_host.cc b/content/browser/gpu/gpu_process_host.cc
|
| index c6a30fa206b8b082bd17c7e68526d40d17358920..986f8b3b64b4ce102ef91612b8dfcb2e5cbdab52 100644
|
| --- a/content/browser/gpu/gpu_process_host.cc
|
| +++ b/content/browser/gpu/gpu_process_host.cc
|
| @@ -108,57 +108,58 @@ namespace {
|
|
|
| // Command-line switches to propagate to the GPU process.
|
| static const char* const kSwitchNames[] = {
|
| - switches::kDisableAcceleratedVideoDecode,
|
| - switches::kDisableBreakpad,
|
| - switches::kDisableGpuSandbox,
|
| - switches::kDisableGpuWatchdog,
|
| - switches::kDisableGLExtensions,
|
| - switches::kDisableLogging,
|
| - switches::kDisableSeccompFilterSandbox,
|
| + switches::kDisableAcceleratedVideoDecode,
|
| + switches::kDisableBreakpad,
|
| + switches::kDisableGpuSandbox,
|
| + switches::kDisableGpuWatchdog,
|
| + switches::kDisableGLExtensions,
|
| + switches::kDisableLogging,
|
| + switches::kDisableSeccompFilterSandbox,
|
| #if defined(ENABLE_WEBRTC)
|
| - switches::kDisableWebRtcHWEncoding,
|
| + switches::kDisableWebRtcHWEncoding,
|
| #endif
|
| #if defined(OS_WIN)
|
| - switches::kEnableAcceleratedVpxDecode,
|
| + switches::kEnableAcceleratedVpxDecode,
|
| #endif
|
| - switches::kEnableHeapProfiling,
|
| - switches::kEnableLogging,
|
| + switches::kEnableHeapProfiling,
|
| + switches::kEnableLogging,
|
| #if defined(OS_CHROMEOS)
|
| - switches::kDisableVaapiAcceleratedVideoEncode,
|
| + switches::kDisableVaapiAcceleratedVideoEncode,
|
| #endif
|
| - switches::kGpuDriverBugWorkarounds,
|
| - switches::kGpuStartupDialog,
|
| - switches::kGpuSandboxAllowSysVShm,
|
| - switches::kGpuSandboxFailuresFatal,
|
| - switches::kGpuSandboxStartEarly,
|
| - switches::kLoggingLevel,
|
| - switches::kEnableLowEndDeviceMode,
|
| - switches::kDisableLowEndDeviceMode,
|
| - switches::kEnableMemoryBenchmarking,
|
| - switches::kNoSandbox,
|
| - switches::kProfilerTiming,
|
| - switches::kTestGLLib,
|
| - switches::kTraceConfigFile,
|
| - switches::kTraceStartup,
|
| - switches::kTraceToConsole,
|
| - switches::kV,
|
| - switches::kVModule,
|
| + switches::kGpuDriverBugWorkarounds,
|
| + switches::kGpuStartupDialog,
|
| + switches::kGpuSandboxAllowSysVShm,
|
| + switches::kGpuSandboxFailuresFatal,
|
| + switches::kGpuSandboxStartEarly,
|
| + switches::kLoggingLevel,
|
| + switches::kEnableLowEndDeviceMode,
|
| + switches::kDisableLowEndDeviceMode,
|
| + switches::kEnableMemoryBenchmarking,
|
| + switches::kNoSandbox,
|
| + switches::kProfilerTiming,
|
| + switches::kTestGLLib,
|
| + switches::kTraceConfigFile,
|
| + switches::kTraceStartup,
|
| + switches::kTraceToConsole,
|
| + switches::kUseGpuInTests,
|
| + switches::kV,
|
| + switches::kVModule,
|
| #if defined(OS_MACOSX)
|
| - switches::kDisableRemoteCoreAnimation,
|
| - switches::kEnableSandboxLogging,
|
| - switches::kShowMacOverlayBorders,
|
| + switches::kDisableRemoteCoreAnimation,
|
| + switches::kEnableSandboxLogging,
|
| + switches::kShowMacOverlayBorders,
|
| #endif
|
| #if defined(USE_OZONE)
|
| - switches::kOzonePlatform,
|
| + switches::kOzonePlatform,
|
| #endif
|
| #if defined(USE_X11) && !defined(OS_CHROMEOS)
|
| - switches::kWindowDepth,
|
| - switches::kX11Display,
|
| - switches::kX11VisualID,
|
| + switches::kWindowDepth,
|
| + switches::kX11Display,
|
| + switches::kX11VisualID,
|
| #endif
|
| - switches::kGpuTestingGLVendor,
|
| - switches::kGpuTestingGLRenderer,
|
| - switches::kGpuTestingGLVersion,
|
| + switches::kGpuTestingGLVendor,
|
| + switches::kGpuTestingGLRenderer,
|
| + switches::kGpuTestingGLVersion,
|
| };
|
|
|
| enum GPUProcessLifetimeEvent {
|
|
|