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

Unified Diff: content/browser/loader/resource_dispatcher_host_unittest.cc

Issue 2776523005: Plumbing devtools agent host id and request id between processes (Closed)
Patch Set: Full plumbing 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
Index: content/browser/loader/resource_dispatcher_host_unittest.cc
diff --git a/content/browser/loader/resource_dispatcher_host_unittest.cc b/content/browser/loader/resource_dispatcher_host_unittest.cc
index aff0952bcce9f98ca39facfada6f3eec34e52f44..112e09511995082d7494d2610c24ebbce6a9d82f 100644
--- a/content/browser/loader/resource_dispatcher_host_unittest.cc
+++ b/content/browser/loader/resource_dispatcher_host_unittest.cc
@@ -1067,9 +1067,9 @@ class ResourceDispatcherHostTest : public testing::Test, public IPC::Sender {
CommonNavigationParams common_params;
common_params.url = url;
std::unique_ptr<NavigationRequestInfo> request_info(
- new NavigationRequestInfo(common_params, begin_params, url, true,
- false, false, -1, false, false,
- blink::WebPageVisibilityStateVisible));
+ new NavigationRequestInfo(
+ common_params, begin_params, url, true, false, false, -1, false,
+ false, blink::WebPageVisibilityStateVisible, "", 0));
std::unique_ptr<NavigationURLLoader> test_loader =
NavigationURLLoader::Create(
browser_context_->GetResourceContext(),
@@ -2587,7 +2587,7 @@ TEST_F(ResourceDispatcherHostTest, CancelRequestsForContext) {
std::unique_ptr<NavigationRequestInfo> request_info(
new NavigationRequestInfo(common_params, begin_params, download_url,
true, false, false, -1, false, false,
- blink::WebPageVisibilityStateVisible));
+ blink::WebPageVisibilityStateVisible, "", 0));
std::unique_ptr<NavigationURLLoader> loader = NavigationURLLoader::Create(
browser_context_->GetResourceContext(),
BrowserContext::GetDefaultStoragePartition(browser_context_.get()),

Powered by Google App Engine
This is Rietveld 408576698