From 42dc9c1ec6ac0e987773f6c17c8641224b66a7e5 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Wed, 15 Jan 2014 12:01:03 +0000 Subject: [PATCH] Add dummy implementation of crash reporter. --- atom.gyp | 2 + common/crash_reporter/crash_reporter_linux.cc | 38 +++++++++++++++++++ common/crash_reporter/crash_reporter_linux.h | 38 +++++++++++++++++++ 3 files changed, 78 insertions(+) create mode 100644 common/crash_reporter/crash_reporter_linux.cc create mode 100644 common/crash_reporter/crash_reporter_linux.h diff --git a/atom.gyp b/atom.gyp index f75aac85c256..a9e1b37eb6ab 100644 --- a/atom.gyp +++ b/atom.gyp @@ -151,6 +151,8 @@ 'common/api/object_life_monitor.h', 'common/crash_reporter/crash_reporter.cc', 'common/crash_reporter/crash_reporter.h', + 'common/crash_reporter/crash_reporter_linux.cc', + 'common/crash_reporter/crash_reporter_linux.h', 'common/crash_reporter/crash_reporter_mac.h', 'common/crash_reporter/crash_reporter_mac.mm', 'common/crash_reporter/crash_reporter_win.cc', diff --git a/common/crash_reporter/crash_reporter_linux.cc b/common/crash_reporter/crash_reporter_linux.cc new file mode 100644 index 000000000000..2589c99aa35b --- /dev/null +++ b/common/crash_reporter/crash_reporter_linux.cc @@ -0,0 +1,38 @@ +// Copyright (c) 2013 GitHub, Inc. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "common/crash_reporter/crash_reporter_linux.h" + +#include "base/memory/singleton.h" + +namespace crash_reporter { + +CrashReporterLinux::CrashReporterLinux() { +} + +CrashReporterLinux::~CrashReporterLinux() { +} + +void CrashReporterLinux::InitBreakpad(const std::string& product_name, + const std::string& version, + const std::string& company_name, + const std::string& submit_url, + bool auto_submit, + bool skip_system_crash_handler) { +} + +void CrashReporterLinux::SetUploadParameters() { +} + +// static +CrashReporterLinux* CrashReporterLinux::GetInstance() { + return Singleton::get(); +} + +// static +CrashReporter* CrashReporter::GetInstance() { + return CrashReporterLinux::GetInstance(); +} + +} // namespace crash_reporter diff --git a/common/crash_reporter/crash_reporter_linux.h b/common/crash_reporter/crash_reporter_linux.h new file mode 100644 index 000000000000..a968a3946591 --- /dev/null +++ b/common/crash_reporter/crash_reporter_linux.h @@ -0,0 +1,38 @@ +// Copyright (c) 2013 GitHub, Inc. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef ATOM_COMMON_CRASH_REPORTER_CRASH_REPORTER_LINUX_H_ +#define ATOM_COMMON_CRASH_REPORTER_CRASH_REPORTER_LINUX_H_ + +#include "base/compiler_specific.h" +#include "common/crash_reporter/crash_reporter.h" + +template struct DefaultSingletonTraits; + +namespace crash_reporter { + +class CrashReporterLinux : public CrashReporter { + public: + static CrashReporterLinux* GetInstance(); + + virtual void InitBreakpad(const std::string& product_name, + const std::string& version, + const std::string& company_name, + const std::string& submit_url, + bool auto_submit, + bool skip_system_crash_handler) OVERRIDE; + virtual void SetUploadParameters() OVERRIDE; + + private: + friend struct DefaultSingletonTraits; + + CrashReporterLinux(); + virtual ~CrashReporterLinux(); + + DISALLOW_COPY_AND_ASSIGN(CrashReporterLinux); +}; + +} // namespace crash_reporter + +#endif // ATOM_COMMON_CRASH_REPORTER_CRASH_REPORTER_LINUX_H_