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

Unified Diff: chrome/installer/setup/setup_constants.cc

Issue 2507753002: Install the chrome event log provider together with the browser. (Closed)
Patch Set: . 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
Index: chrome/installer/setup/setup_constants.cc
diff --git a/chrome/installer/setup/setup_constants.cc b/chrome/installer/setup/setup_constants.cc
index ffb70c367a1bc88fd2abc3d46da75b53b862a4b3..0ddd060bd22fcf61fb78415a7802a83324a31f35 100644
--- a/chrome/installer/setup/setup_constants.cc
+++ b/chrome/installer/setup/setup_constants.cc
@@ -19,6 +19,16 @@ const wchar_t kInstallSourceChromeDir[] = L"Chrome-bin";
const wchar_t kMediaPlayerRegPath[] =
L"Software\\Microsoft\\MediaPlayer\\ShimInclusionList";
+// Event log provider registry location and value names.
+const wchar_t kEventlogProvidersRegPath[] =
+ L"\\SYSTEM\\CurrentControlSet\\Services\\EventLog\\Application";
+const wchar_t kChromeEventLogProviderName[] = L"chrome";
+const wchar_t kCategoryCount[] = L"CategoryCount";
+const wchar_t kTypesSupported[] = L"TypesSupported";
+const wchar_t kCategoryMessageFile[] = L"CategoryMessageFile";
+const wchar_t kEventMessageFile[] = L"EventMessageFile";
+const wchar_t kParameterMessageFile[] = L"ParameterMessageFile";
+
namespace switches {
// Setting this will delay the operation of setup by the specified number of

Powered by Google App Engine
This is Rietveld 408576698