1 // Copyright 2014 The Chromium 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.
5 #ifndef PPAPI_TESTS_TEST_HARNESS_UTILS_H_
6 #define PPAPI_TESTS_TEST_HARNESS_UTILS_H_
9 #include "base/files/file_path.h"
10 #include "ppapi/shared_impl/ppapi_shared_export.h"
12 // This file specifies utility functions used in Pepper testing in
13 // browser_tests and content_browsertests.
21 // Strips prefixes used to annotate tests from a test name.
22 std::string PPAPI_SHARED_EXPORT
StripTestPrefixes(const std::string
& test_name
);
24 // Returns a platform-specific filename relative to the chrome executable.
25 base::FilePath::StringType PPAPI_SHARED_EXPORT
GetTestLibraryName();
29 #endif // PPAPI_TESTS_TEST_HARNESS_UTILS_H_