From 7fb90810dfdf4eefd52a7d5283998d15eb88a5a4 Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Fri, 18 May 2018 16:43:13 -0700 Subject: [PATCH] Remove the only user of fxl::StringView in FML. (#5314) --- fml/paths.cc | 4 +++- fml/paths.h | 4 +--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fml/paths.cc b/fml/paths.cc index 20c94e62f..840e21163 100644 --- a/fml/paths.cc +++ b/fml/paths.cc @@ -4,12 +4,14 @@ #include "flutter/fml/paths.h" +#include + #include "flutter/fml/build_config.h" namespace fml { namespace paths { -std::string JoinPaths(std::initializer_list components) { +std::string JoinPaths(std::initializer_list components) { std::stringstream stream; size_t i = 0; const size_t size = components.size(); diff --git a/fml/paths.h b/fml/paths.h index 0d4367654..4e26ff818 100644 --- a/fml/paths.h +++ b/fml/paths.h @@ -8,14 +8,12 @@ #include #include -#include "lib/fxl/strings/string_view.h" - namespace fml { namespace paths { std::pair GetExecutableDirectoryPath(); -std::string JoinPaths(std::initializer_list components); +std::string JoinPaths(std::initializer_list components); } // namespace paths } // namespace fml