// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/browser/web_contents/debug_urls.h" #include "content/browser/gpu/gpu_process_host_ui_shim.h" #include "content/public/common/url_constants.h" #include "googleurl/src/gurl.h" namespace content { bool HandleDebugURL(const GURL& url, PageTransition transition) { // Ensure that the user explicitly navigated to this URL. if (!(transition & PAGE_TRANSITION_FROM_ADDRESS_BAR)) return false; if (url.host() == chrome::kChromeUIBrowserCrashHost) { // Induce an intentional crash in the browser process. CHECK(false); return true; } if (url == GURL(chrome::kChromeUIGpuCleanURL)) { GpuProcessHostUIShim* shim = GpuProcessHostUIShim::GetOneInstance(); if (shim) shim->SimulateRemoveAllContext(); return true; } if (url == GURL(chrome::kChromeUIGpuCrashURL)) { GpuProcessHostUIShim* shim = GpuProcessHostUIShim::GetOneInstance(); if (shim) shim->SimulateCrash(); return true; } if (url == GURL(chrome::kChromeUIGpuHangURL)) { GpuProcessHostUIShim* shim = GpuProcessHostUIShim::GetOneInstance(); if (shim) shim->SimulateHang(); return true; } return false; } } // namespace content