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

Unified Diff: chrome/browser/plugin_observer.cc

Issue 7835004: Moved the following IPCs out of chrome into content where they are handled by (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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
Index: chrome/browser/plugin_observer.cc
===================================================================
--- chrome/browser/plugin_observer.cc (revision 99462)
+++ chrome/browser/plugin_observer.cc (working copy)
@@ -293,7 +293,6 @@
bool PluginObserver::OnMessageReceived(const IPC::Message& message) {
IPC_BEGIN_MESSAGE_MAP(PluginObserver, message)
- IPC_MESSAGE_HANDLER(ViewHostMsg_CrashedPlugin, OnCrashedPlugin)
IPC_MESSAGE_HANDLER(ChromeViewHostMsg_BlockedOutdatedPlugin,
OnBlockedOutdatedPlugin)
IPC_MESSAGE_UNHANDLED(return false)
@@ -302,7 +301,7 @@
return true;
}
-void PluginObserver::OnCrashedPlugin(const FilePath& plugin_path) {
+void PluginObserver::CrashedPlugin(const FilePath& plugin_path) {
jam 2011/09/03 00:10:47 why is this method still here?
ananta 2011/09/03 00:43:23 Removed and moved to browser.cc. No reason for it
DCHECK(!plugin_path.value().empty());
string16 plugin_name = plugin_path.LossyDisplayName();

Powered by Google App Engine
This is Rietveld 408576698