touch_noise_filter: Uprev to libchrome r369476

libchrome is being updated to a new version and a number of APIs
have changed. Updating the clients using those APIs...

BUG=b:26772882
TEST=./build_packages --board={link|whirlwind}
CQ-DEPEND=CL:323378

Change-Id: I8447c1031896e108e00013933c8ee86455e917ee
Reviewed-on: https://chromium-review.googlesource.com/323376
Commit-Ready: Alex Vakulenko <avakulenko@google.com>
Tested-by: Alex Vakulenko <avakulenko@google.com>
Reviewed-by: Alex Vakulenko <avakulenko@google.com>
diff --git a/far_apart_taps_filter.cc b/far_apart_taps_filter.cc
index d81502e..c4551cc 100644
--- a/far_apart_taps_filter.cc
+++ b/far_apart_taps_filter.cc
@@ -4,7 +4,7 @@
 
 #include "touch_noise_filter/far_apart_taps_filter.h"
 
-#include <base/basictypes.h>
+#include <base/macros.h>
 
 #include <cmath>
 #include <cstddef>
diff --git a/horizontally_aligned_filter.cc b/horizontally_aligned_filter.cc
index c37c5f9..e3f9676 100644
--- a/horizontally_aligned_filter.cc
+++ b/horizontally_aligned_filter.cc
@@ -4,7 +4,7 @@
 
 #include "touch_noise_filter/horizontally_aligned_filter.h"
 
-#include <base/basictypes.h>
+#include <base/macros.h>
 
 #include <algorithm>
 #include <cstddef>
diff --git a/input_event_filter.cc b/input_event_filter.cc
index 9776b5b..21f0ce9 100644
--- a/input_event_filter.cc
+++ b/input_event_filter.cc
@@ -6,8 +6,9 @@
 
 #include <linux/input.h>
 #include <stdio.h>
+#include <string.h>
 
-#include <base/basictypes.h>
+#include <base/macros.h>
 
 namespace touch_noise_filter {
 
diff --git a/single_frame_tap_filter.cc b/single_frame_tap_filter.cc
index d692340..04117ff 100644
--- a/single_frame_tap_filter.cc
+++ b/single_frame_tap_filter.cc
@@ -4,7 +4,7 @@
 
 #include "touch_noise_filter/single_frame_tap_filter.h"
 
-#include <base/basictypes.h>
+#include <base/macros.h>
 
 #include <cstddef>
 #include <cstdio>
diff --git a/single_position_filter.cc b/single_position_filter.cc
index 6606a3c..5c4482b 100644
--- a/single_position_filter.cc
+++ b/single_position_filter.cc
@@ -8,7 +8,7 @@
 #include <cstddef>
 #include <cstdio>
 
-#include <base/basictypes.h>
+#include <base/macros.h>
 
 namespace touch_noise_filter {
 
diff --git a/touch_noise_filter.cc b/touch_noise_filter.cc
index 7212282..f159de6 100644
--- a/touch_noise_filter.cc
+++ b/touch_noise_filter.cc
@@ -4,7 +4,7 @@
 
 #include "touch_noise_filter/touch_noise_filter.h"
 
-#include <base/basictypes.h>
+#include <base/macros.h>
 
 #include "touch_noise_filter/far_apart_taps_filter.h"
 #include "touch_noise_filter/filter.h"