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

Unified Diff: base/syslog_logging.cc

Issue 2476353003: Adds eventlog provider dll to describe the message types of SYSLOG. (Closed)
Patch Set: Make the mc file unicode encoded. Created 4 years, 1 month 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 | « base/BUILD.gn ('k') | base/win/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/syslog_logging.cc
diff --git a/base/syslog_logging.cc b/base/syslog_logging.cc
index 1d3daf9e83034f523bb48afe1058a7ba813e63ac..2313856f9a62f23ea89d9c7d5055dfeab3fbab93 100644
--- a/base/syslog_logging.cc
+++ b/base/syslog_logging.cc
@@ -6,6 +6,8 @@
#include "base/syslog_logging.h"
#if defined(OS_WIN)
+#include "base/win/eventlog_messages.h"
+
#include <windows.h>
#elif defined(OS_LINUX)
#include <syslog.h>
@@ -51,10 +53,8 @@ EventLogMessage::~EventLogMessage() {
log_type = EVENTLOG_ERROR_TYPE;
break;
}
- // TODO(pastarmovj): Register Chrome's event log resource types to make the
- // entries nicer. 1337 is just a made up event id type.
- if (!ReportEventA(event_log_handle, log_type, 0, 1337, NULL, 1, 0,
- strings, NULL)) {
+ if (!ReportEventA(event_log_handle, log_type, BROWSER_CATEGORY,
+ MSG_LOG_MESSAGE, NULL, 1, 0, strings, NULL)) {
stream() << " !!NOT ADDED TO EVENTLOG!!";
}
DeregisterEventSource(event_log_handle);
« no previous file with comments | « base/BUILD.gn ('k') | base/win/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698