Seperate implementation of crash reporter to standalone class.

This commit is contained in:
Cheng Zhao 2013-07-04 15:54:34 +08:00
parent 5f3b71e589
commit f146c1fe3b
5 changed files with 90 additions and 22 deletions

View file

@ -0,0 +1,22 @@
// 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