зеркало из https://github.com/electron/electron.git
23 строки
468 B
C++
23 строки
468 B
C++
// 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 "browser/crash_reporter.h"
|
|
|
|
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
|
|
|