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

Side by Side Diff: content/common/net/url_request_devtools_user_data.cc

Issue 2776523005: Plumbing devtools agent host id and request id between processes (Closed)
Patch Set: Rebased Created 3 years, 8 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 | « content/common/net/url_request_devtools_user_data.h ('k') | content/common/resource_messages.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 2017 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 #include "content/common/net/url_request_devtools_user_data.h"
6
7 namespace content {
8
9 URLRequestDevtoolsUserData::URLRequestDevtoolsUserData(
10 const std::string& devtools_agent_host_id,
11 const std::string& devtools_request_id)
12 : devtools_agent_host_id_(devtools_agent_host_id),
13 devtools_request_id_(devtools_request_id),
14 is_redirect_(false) {}
15
16 URLRequestDevtoolsUserData::~URLRequestDevtoolsUserData() {}
17
18 // static
19 const void* URLRequestDevtoolsUserData::kUserDataKey =
20 static_cast<const void*>(&URLRequestDevtoolsUserData::kUserDataKey);
21
22 } // namespace content
OLDNEW
« no previous file with comments | « content/common/net/url_request_devtools_user_data.h ('k') | content/common/resource_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698