| Index: content/common/input/web_input_event_traits.cc
|
| diff --git a/content/common/input/web_input_event_traits.cc b/content/common/input/web_input_event_traits.cc
|
| index c6d9126428176f01c9c85490415867cdffd8536a..b2346401ad4d088e8477fd77350a1579eabd43e8 100644
|
| --- a/content/common/input/web_input_event_traits.cc
|
| +++ b/content/common/input/web_input_event_traits.cc
|
| @@ -7,7 +7,6 @@
|
| #include <bitset>
|
| #include <limits>
|
|
|
| -#include "base/format_macros.h"
|
| #include "base/logging.h"
|
| #include "base/strings/stringprintf.h"
|
|
|
| @@ -110,11 +109,11 @@ void ApppendTouchPointDetails(const WebTouchPoint& point, std::string* result) {
|
| void ApppendEventDetails(const WebTouchEvent& event, std::string* result) {
|
| StringAppendF(result,
|
| "{\n Touches: %u, Cancelable: %d, CausesScrolling: %d,"
|
| - " uniqueTouchEventId: %" PRIu64 "\n[\n",
|
| + " uniqueTouchEventId: %u\n[\n",
|
| event.touchesLength,
|
| event.cancelable,
|
| event.causesScrollingIfUncanceled,
|
| - event.uniqueTouchEventId);
|
| + static_cast<uint32>(event.uniqueTouchEventId));
|
| for (unsigned i = 0; i < event.touchesLength; ++i)
|
| ApppendTouchPointDetails(event.touches[i], result);
|
| result->append(" ]\n}");
|
|
|