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

Unified Diff: ppapi/host/ppapi_host.cc

Issue 10983028: Render/pepper hang debugging: generate dumps for the browser and renderer processes if users kill a… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 3 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 | « chrome/browser/ui/hung_plugin_tab_helper.cc ('k') | ppapi/ppapi_shared.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/host/ppapi_host.cc
diff --git a/ppapi/host/ppapi_host.cc b/ppapi/host/ppapi_host.cc
index 3a7add16037db115b61826731796edd62944375b..0ec37b6e11d2c8ac9ff5a7c96593a5420a1e310e 100644
--- a/ppapi/host/ppapi_host.cc
+++ b/ppapi/host/ppapi_host.cc
@@ -13,7 +13,6 @@
#include "ppapi/proxy/ppapi_messages.h"
#include "ppapi/proxy/resource_message_params.h"
#include "ppapi/shared_impl/host_resource.h"
-#include "ppapi/shared_impl/ppapi_message_tracker.h"
namespace ppapi {
namespace host {
@@ -40,12 +39,10 @@ PpapiHost::~PpapiHost() {
}
bool PpapiHost::Send(IPC::Message* msg) {
- ScopedTrackPpapiMessage track_ppapi_message;
return sender_->Send(msg);
}
bool PpapiHost::OnMessageReceived(const IPC::Message& msg) {
- ScopedTrackPpapiMessage track_ppapi_message;
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(PpapiHost, msg)
IPC_MESSAGE_HANDLER(PpapiHostMsg_ResourceCall,
« no previous file with comments | « chrome/browser/ui/hung_plugin_tab_helper.cc ('k') | ppapi/ppapi_shared.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698