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

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

Issue 2750513002: Headless: Pass devtools request id to the URLFetcher (Closed)
Patch Set: Remove underscores 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
« no previous file with comments | « 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..86fd3b36e89f81db225f12c97db5f099475d48d0 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,
+ 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
« no previous file with comments | « headless/public/util/url_fetcher.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698