Commit b349b656 authored by Nektarios Paisios's avatar Nektarios Paisios Committed by Commit Bot

Added a space between the class name and the event type in AXEvent's ToString method

This enhances readability when debugging.

AX-Relnotes: n/a.

TBR=dmazzoni@chromium.org, aleventhal@chromium.org

Change-Id: I4e0bcf1ccb7ded6b0204b9c06b9965bde76b05f4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2249934Reviewed-by: default avatarNektarios Paisios <nektar@chromium.org>
Commit-Queue: Nektarios Paisios <nektar@chromium.org>
Cr-Commit-Position: refs/heads/master@{#779782}
parent 15f03cd7
......@@ -29,7 +29,7 @@ AXEvent::AXEvent(const AXEvent& event) = default;
AXEvent& AXEvent::operator=(const AXEvent& event) = default;
std::string AXEvent::ToString() const {
std::string result = "AXEvent";
std::string result = "AXEvent ";
result += ui::ToString(event_type);
result += " on node id=" + base::NumberToString(id);
......
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