| Index: testing/test_support.h
 | 
| diff --git a/testing/test_support.h b/testing/test_support.h
 | 
| index 4b716ae7720871965a937e67d9f7e42440da303a..fdb24fe61baf52112ee349461299d2888cb2e070 100644
 | 
| --- a/testing/test_support.h
 | 
| +++ b/testing/test_support.h
 | 
| @@ -8,6 +8,7 @@
 | 
|  #include <stdlib.h>
 | 
|  #include <memory>
 | 
|  #include <string>
 | 
| +#include <vector>
 | 
|  
 | 
|  #include "public/fpdf_save.h"
 | 
|  #include "public/fpdfview.h"
 | 
| @@ -63,6 +64,8 @@ struct FreeDeleter {
 | 
|  std::unique_ptr<char, pdfium::FreeDeleter> GetFileContents(const char* filename,
 | 
|                                                             size_t* retlen);
 | 
|  
 | 
| +std::vector<std::string> StringSplit(const std::string& str, char delimiter);
 | 
| +
 | 
|  // Converts a FPDF_WIDESTRING to a std::wstring.
 | 
|  // Deals with differences between UTF16LE and wchar_t.
 | 
|  std::wstring GetPlatformWString(const FPDF_WIDESTRING wstr);
 | 
| 
 |