OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef REMOTING_BASE_URL_REQUEST_H_ |
| 6 #define REMOTING_BASE_URL_REQUEST_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/callback_forward.h" |
| 11 #include "base/memory/scoped_ptr.h" |
| 12 |
| 13 namespace remoting { |
| 14 |
| 15 // Abstract interface for URL requests. |
| 16 class UrlRequest { |
| 17 public: |
| 18 struct Result { |
| 19 Result() = default; |
| 20 Result(int status, std::string response_body) |
| 21 : success(true), status(status), response_body(response_body) {} |
| 22 |
| 23 static Result Failed() { return Result(); } |
| 24 |
| 25 // Set to true when the URL has been fetched successfully. |
| 26 bool success = false; |
| 27 |
| 28 // HTTP status code received from the server. Valid only when |success| is |
| 29 // set to true. |
| 30 int status = 0; |
| 31 |
| 32 // Body of the response received from the server. Valid only when |success| |
| 33 // is set to true. |
| 34 std::string response_body; |
| 35 }; |
| 36 |
| 37 typedef base::Callback<void(const Result& result)> OnResultCallback; |
| 38 |
| 39 virtual ~UrlRequest() {} |
| 40 |
| 41 // Adds an HTTP header to the request. Has no effect if called after Start(). |
| 42 virtual void AddHeader(const std::string& value) = 0; |
| 43 |
| 44 // Sends a request to the server. |on_response_callback| will be called to |
| 45 // return result of the request. |
| 46 virtual void Start(const OnResultCallback& on_result_callback) = 0; |
| 47 }; |
| 48 |
| 49 // Factory for UrlRequest instances. |
| 50 class UrlRequestFactory { |
| 51 public: |
| 52 virtual ~UrlRequestFactory() {} |
| 53 virtual scoped_ptr<UrlRequest> CreateUrlRequest(const std::string& url) = 0; |
| 54 }; |
| 55 |
| 56 } // namespace remoting |
| 57 |
| 58 #endif // REMOTING_BASE_URL_REQUEST_H_ |
OLD | NEW |