diff options
Diffstat (limited to 'content/browser/frame_host/debug_urls.cc')
-rw-r--r-- | content/browser/frame_host/debug_urls.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/browser/frame_host/debug_urls.cc b/content/browser/frame_host/debug_urls.cc index 7cb11e8..3322e51 100644 --- a/content/browser/frame_host/debug_urls.cc +++ b/content/browser/frame_host/debug_urls.cc @@ -24,7 +24,8 @@ void HandlePpapiFlashDebugURL(const GURL& url) { bool crash = url == GURL(kChromeUIPpapiFlashCrashURL); std::vector<PpapiPluginProcessHost*> hosts; - PpapiPluginProcessHost::FindByName(UTF8ToUTF16(kFlashPluginName), &hosts); + PpapiPluginProcessHost::FindByName( + base::UTF8ToUTF16(kFlashPluginName), &hosts); for (std::vector<PpapiPluginProcessHost*>::iterator iter = hosts.begin(); iter != hosts.end(); ++iter) { if (crash) |