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

Side by Side Diff: headless/public/util/http_url_fetcher.h

Issue 2352663003: Adds a --deterministic-fetch flag to headless_shell (Closed)
Patch Set: Added a few comments Created 4 years, 3 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
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 HEADLESS_PUBLIC_UTIL_HTTP_URL_FETCHER_H_
6 #define HEADLESS_PUBLIC_UTIL_HTTP_URL_FETCHER_H_
7
8 #include "base/macros.h"
9 #include "headless/public/util/url_fetcher.h"
10
11 namespace net {
12 class URLRequestContext;
13 class URLRequestJobFactory;
14 } // namespace
15
16 namespace headless {
17
18 // This URLFetcher owns a (mostly) empty URLRequestContext which it uses to
19 // fetch, bypassing any user-specified protocol handlers.
20 class HttpUrlFetcher : public URLFetcher {
21 public:
22 explicit HttpUrlFetcher(
23 std::unique_ptr<net::URLRequestContext> url_request_context);
24 ~HttpUrlFetcher() override;
25
26 // URLFetcher implementation:
27 void StartFetch(const GURL& rewritten_url,
28 const net::HttpRequestHeaders& request_headers,
29 ResultListener* result_listener) override;
30
31 private:
32 class Delegate;
33
34 std::unique_ptr<net::URLRequestContext> url_request_context_;
35 std::unique_ptr<net::URLRequestJobFactory> url_request_job_factory_;
36 std::unique_ptr<Delegate> delagate_;
37
38 DISALLOW_COPY_AND_ASSIGN(HttpUrlFetcher);
39 };
40
41 } // namespace headless
42
43 #endif // HEADLESS_PUBLIC_UTIL_HTTP_URL_FETCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698