2013-07-04 07:54:34 +00:00
|
|
|
// 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.
|
|
|
|
|
2013-11-13 09:29:35 +00:00
|
|
|
#include "common/crash_reporter/crash_reporter.h"
|
2013-07-04 07:54:34 +00:00
|
|
|
|
|
|
|
namespace crash_reporter {
|
|
|
|
|
|
|
|
// static
|
|
|
|
void CrashReporter::SetCompanyName(const std::string& name) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void CrashReporter::SetSubmissionURL(const std::string& url) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void CrashReporter::SetAutoSubmit(bool yes) {
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace crash_reporter
|
|
|
|
|