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

Unified Diff: ui/events/ipc/latency_info_param_traits.cc

Issue 2039853004: Replace ui::LatencyInfo::InputCoordinate with gfx::PointF (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added missing gyp dep Created 4 years, 6 months 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 | « ui/events/ipc/BUILD.gn ('k') | ui/events/ipc/latency_info_param_traits_macros.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/ipc/latency_info_param_traits.cc
diff --git a/ui/events/ipc/latency_info_param_traits.cc b/ui/events/ipc/latency_info_param_traits.cc
index 436d5f5596954b15a0945ca674c7a3208060f93a..2a689a0dccd91d04df1806ee92ee6a38b2d937f4 100644
--- a/ui/events/ipc/latency_info_param_traits.cc
+++ b/ui/events/ipc/latency_info_param_traits.cc
@@ -4,6 +4,8 @@
#include "ui/events/ipc/latency_info_param_traits_macros.h"
+#include "ui/gfx/ipc/geometry/gfx_param_traits.h"
+
// Generate param traits size methods.
#include "ipc/param_traits_size_macros.h"
namespace IPC {
@@ -68,7 +70,7 @@ bool ParamTraits<ui::LatencyInfo>::Read(const base::Pickle* m,
if (!ReadParam(m, iter, &p->latency_components_))
return false;
- ui::LatencyInfo::InputCoordinate input_coordinates;
+ gfx::PointF input_coordinates;
uint32_t input_coordinates_size;
if (!ReadParam(m, iter, &input_coordinates_size))
return false;
« no previous file with comments | « ui/events/ipc/BUILD.gn ('k') | ui/events/ipc/latency_info_param_traits_macros.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698