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

Unified Diff: chrome/browser/browser_process_impl.cc

Issue 6625064: Move the common child process messages into their own file. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 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 | « no previous file | chrome/browser/renderer_host/browser_render_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process_impl.cc
===================================================================
--- chrome/browser/browser_process_impl.cc (revision 77193)
+++ chrome/browser/browser_process_impl.cc (working copy)
@@ -74,8 +74,7 @@
#endif
#if defined(IPC_MESSAGE_LOG_ENABLED)
-#include "chrome/common/plugin_messages.h"
-#include "chrome/common/render_messages.h"
+#include "content/common/child_process_messages.h"
#endif
#if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
@@ -915,7 +914,7 @@
// Messages to the renderers must be done on the UI (main) thread.
for (RenderProcessHost::iterator i(RenderProcessHost::AllHostsIterator());
!i.IsAtEnd(); i.Advance())
- i.GetCurrentValue()->Send(new ViewMsg_SetIPCLoggingEnabled(enable));
+ i.GetCurrentValue()->Send(new ChildProcessMsg_SetIPCLoggingEnabled(enable));
}
// Helper for SetIPCLoggingEnabled.
@@ -924,7 +923,7 @@
BrowserChildProcessHost::Iterator i; // default constr references a singleton
while (!i.Done()) {
- i->Send(new PluginProcessMsg_SetIPCLoggingEnabled(enabled));
+ i->Send(new ChildProcessMsg_SetIPCLoggingEnabled(enabled));
++i;
}
}
« no previous file with comments | « no previous file | chrome/browser/renderer_host/browser_render_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698