Chromium Code Reviews| Index: chromecast/crash/cast_crashdump_uploader.h |
| diff --git a/chromecast/crash/cast_crashdump_uploader.h b/chromecast/crash/cast_crashdump_uploader.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e76f98d85d144998315b569bd417f23455c2c2e5 |
| --- /dev/null |
| +++ b/chromecast/crash/cast_crashdump_uploader.h |
| @@ -0,0 +1,61 @@ |
| +// Copyright 2015 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 CHROMECAST_CRASH_CAST_CRASHDUMP_UPLOADER_H_ |
| +#define CHROMECAST_CRASH_CAST_CRASHDUMP_UPLOADER_H_ |
| + |
| +#include <map> |
| +#include <string> |
| + |
| +#include "base/macros.h" |
| + |
| +namespace google_breakpad { |
| +class LibcurlWrapper; |
| +} |
| + |
| +namespace chromecast { |
| + |
| +struct CastCrashdumpData { |
| + CastCrashdumpData(); |
| + ~CastCrashdumpData(); |
| + |
| + std::string product; |
| + std::string version; |
| + std::string guid; |
| + std::string ptime; |
| + std::string ctime; |
| + std::string email; |
| + std::string comments; |
| + std::string minidump_pathname; |
| + std::string crash_server; |
| + std::string proxy_host; |
| + std::string proxy_userpassword; |
| +}; |
| + |
| +class CastCrashdumpUploader { |
| + public: |
| + // Does not take ownership of |http_layer|. |
| + CastCrashdumpUploader(const CastCrashdumpData& data, |
| + google_breakpad::LibcurlWrapper* http_layer); |
| + CastCrashdumpUploader(const CastCrashdumpData& data); |
| + ~CastCrashdumpUploader(); |
| + |
| + bool AddAttachment(const std::string& label, const std::string& filename); |
| + void SetParameter(const std::string& key, const std::string& value); |
| + bool Upload(std::string* response); |
| + |
| + private: |
| + bool CheckRequiredParametersArePresent(); |
| + |
| + google_breakpad::LibcurlWrapper* http_layer_; |
| + CastCrashdumpData data_; |
| + std::map<std::string /* label */, std::string /* file */> attachments_; |
|
alokp
2015/06/15 17:51:48
nit: It might be easier to read if the documentati
slan
2015/06/16 14:57:49
Done.
|
| + std::map<std::string /* key */, std::string /* value */> parameters_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(CastCrashdumpUploader); |
| +}; |
| + |
| +} // namespace chromecast |
| + |
| +#endif // CHROMECAST_CRASH_CAST_CRASHDUMP_UPLOADER_H_ |