OLD | NEW |
1 // Copyright 2015 The Crashpad Authors. All rights reserved. | 1 // Copyright 2015 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 #include <errno.h> | 15 #include <errno.h> |
16 #include <getopt.h> | 16 #include <getopt.h> |
17 #include <stdio.h> | 17 #include <stdio.h> |
18 #include <stdlib.h> | 18 #include <stdlib.h> |
19 #include <string.h> | 19 #include <string.h> |
20 #include <strings.h> | 20 #include <strings.h> |
21 #include <sys/types.h> | 21 #include <sys/types.h> |
22 #include <time.h> | 22 #include <time.h> |
23 | 23 |
24 #include <string> | 24 #include <string> |
25 #include <utility> | 25 #include <utility> |
26 #include <vector> | 26 #include <vector> |
27 | 27 |
28 #include "base/basictypes.h" | |
29 #include "base/files/file_path.h" | 28 #include "base/files/file_path.h" |
30 #include "base/logging.h" | 29 #include "base/logging.h" |
| 30 #include "base/macros.h" |
31 #include "base/memory/scoped_ptr.h" | 31 #include "base/memory/scoped_ptr.h" |
32 #include "base/numerics/safe_conversions.h" | 32 #include "base/numerics/safe_conversions.h" |
33 #include "base/strings/utf_string_conversions.h" | 33 #include "base/strings/utf_string_conversions.h" |
34 #include "build/build_config.h" | 34 #include "build/build_config.h" |
35 #include "client/crash_report_database.h" | 35 #include "client/crash_report_database.h" |
36 #include "client/settings.h" | 36 #include "client/settings.h" |
37 #include "tools/tool_support.h" | 37 #include "tools/tool_support.h" |
38 #include "util/file/file_io.h" | 38 #include "util/file/file_io.h" |
39 #include "util/file/file_reader.h" | 39 #include "util/file/file_reader.h" |
40 #include "util/misc/uuid.h" | 40 #include "util/misc/uuid.h" |
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 | 606 |
607 #if defined(OS_POSIX) | 607 #if defined(OS_POSIX) |
608 int main(int argc, char* argv[]) { | 608 int main(int argc, char* argv[]) { |
609 return crashpad::DatabaseUtilMain(argc, argv); | 609 return crashpad::DatabaseUtilMain(argc, argv); |
610 } | 610 } |
611 #elif defined(OS_WIN) | 611 #elif defined(OS_WIN) |
612 int wmain(int argc, wchar_t* argv[]) { | 612 int wmain(int argc, wchar_t* argv[]) { |
613 return crashpad::ToolSupport::Wmain(argc, argv, crashpad::DatabaseUtilMain); | 613 return crashpad::ToolSupport::Wmain(argc, argv, crashpad::DatabaseUtilMain); |
614 } | 614 } |
615 #endif // OS_POSIX | 615 #endif // OS_POSIX |
OLD | NEW |