salsa: Update for libchrome-242728.

BUG=none
TEST=built it
CQ-DEPEND=I1559dfbf82aadfec4f6c13d32c42a283c3b900e3

Change-Id: Icffbb3b46c1b992963a1618abb730f99d4cddf6c
diff --git a/try_touch_experiment/Makefile b/try_touch_experiment/Makefile
index fdcbf8a..f313762 100644
--- a/try_touch_experiment/Makefile
+++ b/try_touch_experiment/Makefile
@@ -34,7 +34,7 @@
 	-I..
 
 PKG_CONFIG ?= pkg-config
-BASE_VER ?= 180609
+BASE_VER ?= 242728
 PC_DEPS = libchrome-$(BASE_VER)
 PC_CFLAGS := $(shell $(PKG_CONFIG) --cflags $(PC_DEPS))
 PC_LIBS := $(shell $(PKG_CONFIG) --libs $(PC_DEPS))
diff --git a/try_touch_experiment/experiment.h b/try_touch_experiment/experiment.h
index d0e0364..5ee4297 100644
--- a/try_touch_experiment/experiment.h
+++ b/try_touch_experiment/experiment.h
@@ -7,7 +7,7 @@
 
 #include <string>
 #include <vector>
-#include <base/string_split.h>
+#include <base/strings/string_split.h>
 #include "treatment.h"
 
 class Experiment {
diff --git a/try_touch_experiment/property.h b/try_touch_experiment/property.h
index 604c170..b1ae903 100644
--- a/try_touch_experiment/property.h
+++ b/try_touch_experiment/property.h
@@ -9,9 +9,9 @@
 #include <stdlib.h>
 #include <string>
 #include <vector>
-#include <base/stringprintf.h>
-#include <base/string_split.h>
-#include <base/string_util.h>
+#include <base/strings/stringprintf.h>
+#include <base/strings/string_split.h>
+#include <base/strings/string_util.h>
 
 #define MAX_RETRIES 5
 #define MAX_ALLOWABLE_DIFFERENCE 0.0001
diff --git a/try_touch_experiment/salsa_experiment_runner.h b/try_touch_experiment/salsa_experiment_runner.h
index 42ab9e2..adf229a 100644
--- a/try_touch_experiment/salsa_experiment_runner.h
+++ b/try_touch_experiment/salsa_experiment_runner.h
@@ -6,8 +6,8 @@
 #define GESTURES_SALSA_TRY_TOUCH_EXPERIMENT_RUNNER_H_
 
 #include <string>
-#include <base/stringprintf.h>
-#include <base/string_util.h>
+#include <base/strings/stringprintf.h>
+#include <base/strings/string_util.h>
 #include <ncurses.h>
 #include "experiment.h"
 
diff --git a/try_touch_experiment/treatment.h b/try_touch_experiment/treatment.h
index 2e7ccf3..1b9dd37 100644
--- a/try_touch_experiment/treatment.h
+++ b/try_touch_experiment/treatment.h
@@ -7,7 +7,7 @@
 
 #include <string>
 #include <vector>
-#include <base/string_split.h>
+#include <base/strings/string_split.h>
 #include "property.h"
 
 class Treatment {