| Index: third_party/crashpad/crashpad/test/test_paths.h
|
| diff --git a/third_party/crashpad/crashpad/test/paths.h b/third_party/crashpad/crashpad/test/test_paths.h
|
| similarity index 88%
|
| rename from third_party/crashpad/crashpad/test/paths.h
|
| rename to third_party/crashpad/crashpad/test/test_paths.h
|
| index 7643ddd88afdb31622242c0c3c6f059c5819954b..261ab9110c0b357f647cb480f42b4704f2d1e83d 100644
|
| --- a/third_party/crashpad/crashpad/test/paths.h
|
| +++ b/third_party/crashpad/crashpad/test/test_paths.h
|
| @@ -12,8 +12,8 @@
|
| // See the License for the specific language governing permissions and
|
| // limitations under the License.
|
|
|
| -#ifndef CRASHPAD_TEST_PATHS_H_
|
| -#define CRASHPAD_TEST_PATHS_H_
|
| +#ifndef CRASHPAD_TEST_TEST_PATHS_H_
|
| +#define CRASHPAD_TEST_TEST_PATHS_H_
|
|
|
| #include "base/files/file_path.h"
|
| #include "base/macros.h"
|
| @@ -22,9 +22,11 @@ namespace crashpad {
|
| namespace test {
|
|
|
| //! \brief Functions to obtain paths from within tests.
|
| -class Paths {
|
| +class TestPaths {
|
| public:
|
| //! \brief Returns the pathname of the currently-running test executable.
|
| + //!
|
| + //! On failure, aborts execution.
|
| static base::FilePath Executable();
|
|
|
| //! \brief Returns the pathname of the test data root.
|
| @@ -40,10 +42,10 @@ class Paths {
|
| //! files.
|
| static base::FilePath TestDataRoot();
|
|
|
| - DISALLOW_IMPLICIT_CONSTRUCTORS(Paths);
|
| + DISALLOW_IMPLICIT_CONSTRUCTORS(TestPaths);
|
| };
|
|
|
| } // namespace test
|
| } // namespace crashpad
|
|
|
| -#endif // CRASHPAD_TEST_PATHS_H_
|
| +#endif // CRASHPAD_TEST_TEST_PATHS_H_
|
|
|