| // Copyright 2014 The Chromium OS 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 METRICS_UPLOADER_SENDER_HTTP_H_ |
| #define METRICS_UPLOADER_SENDER_HTTP_H_ |
| |
| #include <string> |
| |
| #include <base/macros.h> |
| |
| #include "metrics/uploader/sender.h" |
| |
| // Sender implemented using http_utils from libchromeos |
| class HttpSender : public Sender { |
| public: |
| explicit HttpSender(std::string server_url); |
| ~HttpSender() override = default; |
| // Sends |content| whose SHA1 hash is |hash| to server_url with a synchronous |
| // POST request to server_url. |
| bool Send(const std::string& content, const std::string& hash) override; |
| |
| private: |
| const std::string server_url_; |
| |
| DISALLOW_COPY_AND_ASSIGN(HttpSender); |
| }; |
| |
| #endif // METRICS_UPLOADER_SENDER_HTTP_H_ |