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

Unified Diff: third_party/crashpad/crashpad/tools/tool_support.cc

Issue 1505213004: Copy Crashpad into the Chrome tree instead of importing it via DEPS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments, update README.chromium Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/crashpad/crashpad/tools/tool_support.cc
diff --git a/third_party/crashpad/crashpad/tools/tool_support.cc b/third_party/crashpad/crashpad/tools/tool_support.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5d3592bcfdf92bc95ddd89c296ea78486af74163
--- /dev/null
+++ b/third_party/crashpad/crashpad/tools/tool_support.cc
@@ -0,0 +1,101 @@
+// Copyright 2014 The Crashpad Authors. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#include "tools/tool_support.h"
+
+#include <stdio.h>
+
+#include <vector>
+
+#include "base/memory/scoped_ptr.h"
+#include "base/strings/utf_string_conversions.h"
+#include "package.h"
+
+namespace crashpad {
+
+// static
+void ToolSupport::Version(const base::FilePath& me) {
+ fprintf(stderr,
+ "%" PRFilePath " (%s) %s\n%s\n",
+ me.value().c_str(),
+ PACKAGE_NAME,
+ PACKAGE_VERSION,
+ PACKAGE_COPYRIGHT);
+}
+
+// static
+void ToolSupport::UsageTail(const base::FilePath& me) {
+ fprintf(stderr,
+ "\nReport %" PRFilePath " bugs to\n%s\n%s home page: <%s>\n",
+ me.value().c_str(),
+ PACKAGE_BUGREPORT,
+ PACKAGE_NAME,
+ PACKAGE_URL);
+}
+
+// static
+void ToolSupport::UsageHint(const base::FilePath& me, const char* hint) {
+ if (hint) {
+ fprintf(stderr, "%" PRFilePath ": %s\n", me.value().c_str(), hint);
+ }
+ fprintf(stderr,
+ "Try '%" PRFilePath " --help' for more information.\n",
+ me.value().c_str());
+}
+
+#if defined(OS_POSIX)
+// static
+void ToolSupport::Version(const std::string& me) {
+ Version(base::FilePath(me));
+}
+
+// static
+void ToolSupport::UsageTail(const std::string& me) {
+ UsageTail(base::FilePath(me));
+}
+
+// static
+void ToolSupport::UsageHint(const std::string& me, const char* hint) {
+ UsageHint(base::FilePath(me), hint);
+}
+#endif // OS_POSIX
+
+#if defined(OS_WIN)
+
+// static
+int ToolSupport::Wmain(int argc, wchar_t* argv[], int (*entry)(int, char* [])) {
+ scoped_ptr<char* []> argv_as_utf8(new char* [argc + 1]);
+ std::vector<std::string> storage;
+ storage.reserve(argc);
+ for (int i = 0; i < argc; ++i) {
+ storage.push_back(base::UTF16ToUTF8(argv[i]));
+ argv_as_utf8[i] = &storage[i][0];
+ }
+ argv_as_utf8[argc] = nullptr;
+ return entry(argc, argv_as_utf8.get());
+}
+
+#endif // OS_WIN
+
+// static
+base::FilePath::StringType ToolSupport::CommandLineArgumentToFilePathStringType(
+ const base::StringPiece& path) {
+#if defined(OS_POSIX)
+ return path.as_string();
+#elif defined(OS_WIN)
+ return base::UTF8ToUTF16(path);
+#endif // OS_POSIX
+}
+
+} // namespace crashpad

Powered by Google App Engine
This is Rietveld 408576698