Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: remoting/base/url_request.h

Issue 1679023009: Add remoting::UrlRequest interface with 2 implementations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/base/chromium_url_request.cc ('k') | remoting/client/plugin/pepper_url_request.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « remoting/base/chromium_url_request.cc ('k') | remoting/client/plugin/pepper_url_request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698