paths.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Copyright 2017 The Crashpad Authors. All rights reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #ifndef CRASHPAD_UTIL_PATHS_H_
  15. #define CRASHPAD_UTIL_PATHS_H_
  16. #include "base/files/file_path.h"
  17. #include "base/macros.h"
  18. namespace crashpad {
  19. //! \brief Functions to obtain paths.
  20. class Paths {
  21. public:
  22. //! \brief Obtains the pathname of the currently-running executable.
  23. //!
  24. //! \param[out] path The pathname of the currently-running executable.
  25. //!
  26. //! \return `true` on success. `false` on failure, with a message logged.
  27. //!
  28. //! \note In test code, use test::TestPaths::Executable() instead.
  29. static bool Executable(base::FilePath* path);
  30. DISALLOW_IMPLICIT_CONSTRUCTORS(Paths);
  31. };
  32. } // namespace crashpad
  33. #endif // CRASHPAD_UTIL_TEST_PATHS_H_