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

Unified Diff: headless/public/util/url_fetcher.cc

Issue 2750513002: Headless: Pass devtools request id to the URLFetcher (Closed)
Patch Set: Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« headless/public/util/url_fetcher.h ('K') | « headless/public/util/url_fetcher.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: headless/public/util/url_fetcher.cc
diff --git a/headless/public/util/url_fetcher.cc b/headless/public/util/url_fetcher.cc
index 8d8d33fc239a0a0c5026a859b96835304bea059d..17fe21d9cf130e5f406e6bfd6fb1e8952ea08ae7 100644
--- a/headless/public/util/url_fetcher.cc
+++ b/headless/public/util/url_fetcher.cc
@@ -37,4 +37,17 @@ void URLFetcher::ResultListener::OnFetchCompleteExtractHeaders(
response_data_size - read_offset);
}
+void URLFetcher::StartFetch(const GURL& rewritten_url,
+ const std::string& method,
+ const net::HttpRequestHeaders& request_headers,
+ const std::string& devtools_request_id_,
Sami 2017/03/13 12:08:24 nit: no trailing underscore
alex clarke (OOO till 29th) 2017/03/13 13:38:22 Done.
+ ResultListener* result_listener) {
+ StartFetch(rewritten_url, method, request_headers, result_listener);
+}
+
+void URLFetcher::StartFetch(const GURL& rewritten_url,
+ const std::string& method,
+ const net::HttpRequestHeaders& request_headers,
+ ResultListener* result_listener) {}
+
} // namespace headless
« headless/public/util/url_fetcher.h ('K') | « headless/public/util/url_fetcher.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698