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

Unified Diff: chrome/tools/ipclist/ipclist.cc

Issue 11347012: Split IPC logging between content and chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 8 years, 2 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/tools/ipclist/ipclist.cc
diff --git a/chrome/tools/ipclist/ipclist.cc b/chrome/tools/ipclist/ipclist.cc
index 419a05b6381712b6ba82ea88a8dd354d92037a63..baf6c055b55ebcf3e2ce3f1feb9f62a247b0bd60 100644
--- a/chrome/tools/ipclist/ipclist.cc
+++ b/chrome/tools/ipclist/ipclist.cc
@@ -9,6 +9,7 @@
// Include once to get the type definitions
#include "chrome/common/all_messages.h"
+#include "content/common/all_messages.h"
struct msginfo {
const char* name;
@@ -29,6 +30,7 @@ struct msginfo {
static msginfo msgtable[] = {
#include "chrome/common/all_messages.h"
+#include "content/common/all_messages.h"
};
#define MSGTABLE_SIZE (sizeof(msgtable)/sizeof(msgtable[0]))
@@ -77,7 +79,7 @@ static bool check_msgtable() {
}
if (!result)
- std::cout << "Please check chrome/common/all_messages.h.\n";
+ std::cout << "Please check {chrome,content}/common/all_messages.h.\n";
return result;
}

Powered by Google App Engine
This is Rietveld 408576698