Commit 81c45355 authored by Joe Downing's avatar Joe Downing Committed by Commit Bot

Add new event log message to Windows CRD Host

This CL adds a new string and host message which will be used to
log host output to the Windows event log as part of our work to
increase debugability.  Since this new message has no localizable
components, I'm adding a tag to skip the screenshot requirement.

Note that adding a new message requires updating a number of static
files in third_party.

Bug: 1144185
Change-Id: I9d940b94ba0bb3bef32602cec97fdf1c57911184
Skip-Translation-Screenshots-Check: True
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2542547Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Reviewed-by: default avatarJamie Walch <jamiewalch@chromium.org>
Commit-Queue: Joe Downing <joedow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#829774}
parent feddbd1f
......@@ -85,5 +85,16 @@ Language={{ lang | replace("-", "_") }}
.
{%- endfor %}
MessageId=6
Severity=Informational
Facility=Host
SymbolicName=MSG_HOST_LOG_EVENT
{%- for lang in languages %}
{%- do SelectLanguage(lang) %}
Language={{ lang | replace("-", "_") }}
{% trans %}HOST_LOG_EVENT{% endtrans %}
.
{%- endfor %}
; // This line makes sure that mc.exe does not complain about a single '.' at
; // the end of the file.
......@@ -804,6 +804,9 @@
<message name="IDS_HOST_STOPPED" desc="The message reported to the EventLog by Chromoting Host every time it is stopped.">
Host stopped.
</message>
<message name="IDS_HOST_LOG_EVENT" desc="The message reported to the EventLog by Chromoting Host every time it logs a message. Since we are just logging debugging messages directly, no localizable text is required in this string.">
<ph name="ORIGINAL_LOG_MESSAGE">%1</ph>
</message>
<message desc="This text is used on a button or context-menu or similar control. When chosen or pressed, it deletes a selected item from a list." meaning="Delete an item from a list." name="IDS_DELETE_LIST_ITEM" formatter_data="android_java">
Delete
</message>
......
......@@ -92,5 +92,13 @@
//
#define MSG_HOST_STARTED ((DWORD)0x40000005L)
//
// MessageId: MSG_HOST_LOG_EVENT
//
// MessageText:
//
//
#define MSG_HOST_LOG_EVENT ((DWORD)0x40000006L)
// This line makes sure that mc.exe does not complain about a single '.' at
// the end of the file.
\ No newline at end of file
// the end of the file.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment