Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: tools/tool_support.h

Issue 1119783005: win: get tools/crashpad_database_util mostly working (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: fixes Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/crashpad_database_util.cc ('k') | tools/tool_support.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Crashpad Authors. All rights reserved. 1 // Copyright 2014 The Crashpad Authors. All rights reserved.
2 // 2 //
3 // Licensed under the Apache License, Version 2.0 (the "License"); 3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with 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 5 // You may obtain a copy of the License at
6 // 6 //
7 // http://www.apache.org/licenses/LICENSE-2.0 7 // http://www.apache.org/licenses/LICENSE-2.0
8 // 8 //
9 // Unless required by applicable law or agreed to in writing, software 9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS, 10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and 12 // See the License for the specific language governing permissions and
13 // limitations under the License. 13 // limitations under the License.
14 14
15 #ifndef CRASHPAD_TOOLS_TOOL_SUPPORT_H_ 15 #ifndef CRASHPAD_TOOLS_TOOL_SUPPORT_H_
16 #define CRASHPAD_TOOLS_TOOL_SUPPORT_H_ 16 #define CRASHPAD_TOOLS_TOOL_SUPPORT_H_
17 17
18 #include <string> 18 #include <string>
19 19
20 #include "base/basictypes.h" 20 #include "base/basictypes.h"
21 #include "base/files/file_path.h"
22 #include "build/build_config.h"
21 23
22 namespace crashpad { 24 namespace crashpad {
23 25
24 //! \brief Common functions used by command line tools. 26 //! \brief Common functions used by command line tools.
25 class ToolSupport { 27 class ToolSupport {
26 public: 28 public:
27 //! \brief Handles `--version`. 29 //! \brief Handles `--version`.
28 //! 30 //!
29 //! \param[in] me The tool’s name, the basename of `argv[0]`. 31 //! \param[in] me The tool’s name, the basename of `argv[0]`.
30 static void Version(const std::string& me); 32 static void Version(const base::FilePath& me);
31 33
32 //! \brief Prints the footer for `--help`. 34 //! \brief Prints the footer for `--help`.
33 //! 35 //!
34 //! \param[in] me The tool’s name, the basename of `argv[0]`. 36 //! \param[in] me The tool’s name, the basename of `argv[0]`.
35 static void UsageTail(const std::string& me); 37 static void UsageTail(const base::FilePath& me);
36 38
37 //! \brief Suggests using `--help` when a command line tool can’t make sense 39 //! \brief Suggests using `--help` when a command line tool can’t make sense
38 //! of its arguments. 40 //! of its arguments.
39 //! 41 //!
40 //! \param[in] me The tool’s name, the basename of `argv[0]`. 42 //! \param[in] me The tool’s name, the basename of `argv[0]`.
43 static void UsageHint(const base::FilePath& me, const char* hint);
44
45 #if defined(OS_POSIX) || DOXYGEN
46 //! \copydoc Version
47 static void Version(const std::string& me);
48
49 //! \copydoc UsageTail
50 static void UsageTail(const std::string& me);
51
52 //! \copydoc UsageHint
41 static void UsageHint(const std::string& me, const char* hint); 53 static void UsageHint(const std::string& me, const char* hint);
54 #endif // OS_POSIX
42 55
43 private: 56 private:
44 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolSupport); 57 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolSupport);
45 }; 58 };
46 59
47 } // namespace crashpad 60 } // namespace crashpad
48 61
49 #endif // CRASHPAD_TOOLS_TOOL_SUPPORT_H_ 62 #endif // CRASHPAD_TOOLS_TOOL_SUPPORT_H_
OLDNEW
« no previous file with comments | « tools/crashpad_database_util.cc ('k') | tools/tool_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698