1 // Copyright (c) 2013 The Chromium OS Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CHROMIUMOS_WIDE_PROFILING_PERF_TEST_FILES_H_ 6 #define CHROMIUMOS_WIDE_PROFILING_PERF_TEST_FILES_H_ 7 8 #include <vector> 9 10 namespace perf_test_files { 11 12 const std::vector<const char*>& GetPerfDataFiles(); 13 const std::vector<const char*>& GetPerfPipedDataFiles(); 14 const std::vector<const char*>& GetCorruptedPerfPipedDataFiles(); 15 const std::vector<const char*>& GetPerfDataProtoFiles(); 16 17 } // namespace perf_test_files 18 19 #endif // CHROMIUMOS_WIDE_PROFILING_PERF_TEST_FILES_H_ 20