Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1892)

Unified Diff: content/renderer/render_view_impl.cc

Issue 11820009: Distinguish plugin disconnections from plugin crashes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | content/renderer/webplugin_delegate_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index 2cb205afd07e8be166106d190962a11a2e7206c4..929f44d332a33c397375cfa5561274596c3e30da 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -892,8 +892,9 @@ WebKit::WebView* RenderViewImpl::webview() const {
return static_cast<WebKit::WebView*>(webwidget());
}
-void RenderViewImpl::PluginCrashed(const FilePath& plugin_path) {
- Send(new ViewHostMsg_CrashedPlugin(routing_id_, plugin_path));
+void RenderViewImpl::PluginCrashed(const FilePath& plugin_path,
+ base::ProcessId plugin_pid) {
+ Send(new ViewHostMsg_CrashedPlugin(routing_id_, plugin_path, plugin_pid));
}
void RenderViewImpl::RegisterPluginDelegate(WebPluginDelegateProxy* delegate) {
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | content/renderer/webplugin_delegate_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698