[email protected] | d4a8ca48 | 2013-10-30 21:06:40 | [diff] [blame] | 1 | // Copyright 2013 The Chromium Authors. All rights reserved. |
[email protected] | 8bf104801 | 2012-02-08 01:22:18 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | d4a8ca48 | 2013-10-30 21:06:40 | [diff] [blame] | 5 | #include "content/browser/frame_host/debug_urls.h" |
[email protected] | 8bf104801 | 2012-02-08 01:22:18 | [diff] [blame] | 6 | |
[email protected] | 029bd94 | 2013-01-22 08:30:33 | [diff] [blame] | 7 | #include <vector> |
8 | |||||
[email protected] | 74ebfb1 | 2013-06-07 20:48:00 | [diff] [blame] | 9 | #include "base/strings/utf_string_conversions.h" |
[email protected] | 8bf104801 | 2012-02-08 01:22:18 | [diff] [blame] | 10 | #include "content/browser/gpu/gpu_process_host_ui_shim.h" |
[email protected] | 029bd94 | 2013-01-22 08:30:33 | [diff] [blame] | 11 | #include "content/browser/ppapi_plugin_process_host.h" |
12 | #include "content/public/browser/browser_thread.h" | ||||
[email protected] | 7327029 | 2013-08-09 03:48:07 | [diff] [blame] | 13 | #include "content/public/common/content_constants.h" |
[email protected] | 8bf104801 | 2012-02-08 01:22:18 | [diff] [blame] | 14 | #include "content/public/common/url_constants.h" |
[email protected] | 029bd94 | 2013-01-22 08:30:33 | [diff] [blame] | 15 | #include "ppapi/proxy/ppapi_messages.h" |
[email protected] | 707e1c4 | 2013-07-09 21:18:58 | [diff] [blame] | 16 | #include "url/gurl.h" |
[email protected] | 8bf104801 | 2012-02-08 01:22:18 | [diff] [blame] | 17 | |
18 | namespace content { | ||||
19 | |||||
[email protected] | 029bd94 | 2013-01-22 08:30:33 | [diff] [blame] | 20 | namespace { |
21 | |||||
22 | void HandlePpapiFlashDebugURL(const GURL& url) { | ||||
23 | #if defined(ENABLE_PLUGINS) | ||||
[email protected] | f8a6d73 | 2013-03-02 22:46:03 | [diff] [blame] | 24 | bool crash = url == GURL(kChromeUIPpapiFlashCrashURL); |
[email protected] | 029bd94 | 2013-01-22 08:30:33 | [diff] [blame] | 25 | |
26 | std::vector<PpapiPluginProcessHost*> hosts; | ||||
[email protected] | 3295612 | 2013-12-25 07:29:24 | [diff] [blame] | 27 | PpapiPluginProcessHost::FindByName( |
28 | base::UTF8ToUTF16(kFlashPluginName), &hosts); | ||||
[email protected] | 029bd94 | 2013-01-22 08:30:33 | [diff] [blame] | 29 | for (std::vector<PpapiPluginProcessHost*>::iterator iter = hosts.begin(); |
30 | iter != hosts.end(); ++iter) { | ||||
31 | if (crash) | ||||
32 | (*iter)->Send(new PpapiMsg_Crash()); | ||||
33 | else | ||||
34 | (*iter)->Send(new PpapiMsg_Hang()); | ||||
35 | } | ||||
36 | #endif | ||||
37 | } | ||||
38 | |||||
39 | } // namespace | ||||
40 | |||||
[email protected] | 91a4ff8 | 2012-10-29 20:29:48 | [diff] [blame] | 41 | bool HandleDebugURL(const GURL& url, PageTransition transition) { |
[email protected] | 425a747 | 2012-04-30 22:09:10 | [diff] [blame] | 42 | // Ensure that the user explicitly navigated to this URL. |
[email protected] | 91a4ff8 | 2012-10-29 20:29:48 | [diff] [blame] | 43 | if (!(transition & PAGE_TRANSITION_FROM_ADDRESS_BAR)) |
[email protected] | 8bf104801 | 2012-02-08 01:22:18 | [diff] [blame] | 44 | return false; |
45 | |||||
[email protected] | 46ed086 | 2013-04-14 02:47:56 | [diff] [blame] | 46 | if (url.host() == kChromeUIBrowserCrashHost) { |
[email protected] | 8bf104801 | 2012-02-08 01:22:18 | [diff] [blame] | 47 | // Induce an intentional crash in the browser process. |
48 | CHECK(false); | ||||
49 | return true; | ||||
50 | } | ||||
51 | |||||
[email protected] | f8a6d73 | 2013-03-02 22:46:03 | [diff] [blame] | 52 | if (url == GURL(kChromeUIGpuCleanURL)) { |
[email protected] | 8bf104801 | 2012-02-08 01:22:18 | [diff] [blame] | 53 | GpuProcessHostUIShim* shim = GpuProcessHostUIShim::GetOneInstance(); |
54 | if (shim) | ||||
55 | shim->SimulateRemoveAllContext(); | ||||
56 | return true; | ||||
57 | } | ||||
58 | |||||
[email protected] | f8a6d73 | 2013-03-02 22:46:03 | [diff] [blame] | 59 | if (url == GURL(kChromeUIGpuCrashURL)) { |
[email protected] | 8bf104801 | 2012-02-08 01:22:18 | [diff] [blame] | 60 | GpuProcessHostUIShim* shim = GpuProcessHostUIShim::GetOneInstance(); |
61 | if (shim) | ||||
62 | shim->SimulateCrash(); | ||||
63 | return true; | ||||
64 | } | ||||
65 | |||||
[email protected] | f8a6d73 | 2013-03-02 22:46:03 | [diff] [blame] | 66 | if (url == GURL(kChromeUIGpuHangURL)) { |
[email protected] | 8bf104801 | 2012-02-08 01:22:18 | [diff] [blame] | 67 | GpuProcessHostUIShim* shim = GpuProcessHostUIShim::GetOneInstance(); |
68 | if (shim) | ||||
69 | shim->SimulateHang(); | ||||
70 | return true; | ||||
71 | } | ||||
72 | |||||
[email protected] | f8a6d73 | 2013-03-02 22:46:03 | [diff] [blame] | 73 | if (url == GURL(kChromeUIPpapiFlashCrashURL) || |
74 | url == GURL(kChromeUIPpapiFlashHangURL)) { | ||||
[email protected] | 029bd94 | 2013-01-22 08:30:33 | [diff] [blame] | 75 | BrowserThread::PostTask(BrowserThread::IO, FROM_HERE, |
76 | base::Bind(&HandlePpapiFlashDebugURL, url)); | ||||
77 | return true; | ||||
78 | } | ||||
79 | |||||
[email protected] | 8bf104801 | 2012-02-08 01:22:18 | [diff] [blame] | 80 | return false; |
81 | } | ||||
82 | |||||
[email protected] | c02f1ba | 2014-02-03 06:53:53 | [diff] [blame^] | 83 | bool IsRendererDebugURL(const GURL& url) { |
84 | if (!url.is_valid()) | ||||
85 | return false; | ||||
86 | |||||
87 | if (url.SchemeIs(kJavaScriptScheme)) | ||||
88 | return true; | ||||
89 | |||||
90 | return url == GURL(kChromeUICrashURL) || | ||||
91 | url == GURL(kChromeUIKillURL) || | ||||
92 | url == GURL(kChromeUIHangURL) || | ||||
93 | url == GURL(kChromeUIShorthangURL); | ||||
94 | } | ||||
95 | |||||
[email protected] | 8bf104801 | 2012-02-08 01:22:18 | [diff] [blame] | 96 | } // namespace content |