diff options
Diffstat (limited to 'chrome/browser/gpu_process_host.cc')
-rw-r--r-- | chrome/browser/gpu_process_host.cc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/chrome/browser/gpu_process_host.cc b/chrome/browser/gpu_process_host.cc index b9e26e3..a33ef5c 100644 --- a/chrome/browser/gpu_process_host.cc +++ b/chrome/browser/gpu_process_host.cc @@ -94,7 +94,6 @@ bool GpuProcessHost::Init() { static const char* const kSwitchNames[] = { switches::kUseGL, switches::kDisableGpuVsync, - switches::kDisableGpuWatchdog, switches::kDisableLogging, switches::kEnableAcceleratedDecoding, switches::kEnableLogging, @@ -127,6 +126,16 @@ GpuProcessHost* GpuProcessHost::Get() { return sole_instance_; } +// static +void GpuProcessHost::SendAboutGpuCrash() { + Get()->Send(new GpuMsg_Crash()); +} + +// static +void GpuProcessHost::SendAboutGpuHang() { + Get()->Send(new GpuMsg_Hang()); +} + bool GpuProcessHost::Send(IPC::Message* msg) { if (!EnsureInitialized()) return false; |