summaryrefslogtreecommitdiff
path: root/chromium/headless/lib/headless_crash_reporter_client.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-04-05 17:15:33 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-04-11 07:47:18 +0000
commit7324afb043a0b1e623d8e8eb906cdc53bdeb4685 (patch)
treea3fe2d74ea9c9e142c390dac4ca0e219382ace46 /chromium/headless/lib/headless_crash_reporter_client.h
parent6a4cabb866f66d4128a97cdc6d9d08ce074f1247 (diff)
downloadqtwebengine-chromium-7324afb043a0b1e623d8e8eb906cdc53bdeb4685.tar.gz
BASELINE: Update Chromium to 58.0.3029.54
Change-Id: I67f57065a7afdc8e4614adb5c0230281428df4d1 Reviewed-by: Peter Varga <pvarga@inf.u-szeged.hu>
Diffstat (limited to 'chromium/headless/lib/headless_crash_reporter_client.h')
-rw-r--r--chromium/headless/lib/headless_crash_reporter_client.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/chromium/headless/lib/headless_crash_reporter_client.h b/chromium/headless/lib/headless_crash_reporter_client.h
new file mode 100644
index 00000000000..42dc35bb232
--- /dev/null
+++ b/chromium/headless/lib/headless_crash_reporter_client.h
@@ -0,0 +1,51 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef HEADLESS_LIB_HEADLESS_CRASH_REPORTER_CLIENT_H_
+#define HEADLESS_LIB_HEADLESS_CRASH_REPORTER_CLIENT_H_
+
+#include "base/files/file_path.h"
+#include "base/macros.h"
+#include "base/strings/string16.h"
+#include "build/build_config.h"
+#include "components/crash/content/app/crash_reporter_client.h"
+
+namespace headless {
+
+class HeadlessCrashReporterClient : public crash_reporter::CrashReporterClient {
+ public:
+ HeadlessCrashReporterClient();
+ ~HeadlessCrashReporterClient() override;
+
+ void set_crash_dumps_dir(const base::FilePath& dir) {
+ crash_dumps_dir_ = dir;
+ }
+ const base::FilePath& crash_dumps_dir() const { return crash_dumps_dir_; }
+
+#if defined(OS_POSIX) && !defined(OS_MACOSX)
+ // Returns a textual description of the product type and version to include
+ // in the crash report.
+ void GetProductNameAndVersion(const char** product_name,
+ const char** version) override;
+
+ base::FilePath GetReporterLogFilename() override;
+#endif // defined(OS_POSIX) && !defined(OS_MACOSX)
+
+#if defined(OS_WIN)
+ bool GetCrashDumpLocation(base::string16* crash_dir) override;
+#else
+ bool GetCrashDumpLocation(base::FilePath* crash_dir) override;
+#endif
+
+ bool EnableBreakpadForProcess(const std::string& process_type) override;
+
+ private:
+ base::FilePath crash_dumps_dir_;
+
+ DISALLOW_COPY_AND_ASSIGN(HeadlessCrashReporterClient);
+};
+
+} // namespace headless
+
+#endif // HEADLESS_LIB_HEADLESS_CRASH_REPORTER_CLIENT_H_