OLD | NEW |
| (Empty) |
1 // Copyright 2015 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 "components/devtools_discovery/basic_target_descriptor.h" | |
6 | |
7 #include "content/public/browser/devtools_agent_host.h" | |
8 #include "content/public/browser/favicon_status.h" | |
9 #include "content/public/browser/navigation_entry.h" | |
10 #include "content/public/browser/web_contents.h" | |
11 | |
12 using content::DevToolsAgentHost; | |
13 | |
14 namespace devtools_discovery { | |
15 | |
16 BasicTargetDescriptor::BasicTargetDescriptor( | |
17 scoped_refptr<DevToolsAgentHost> agent_host) | |
18 : agent_host_(agent_host) { | |
19 } | |
20 | |
21 BasicTargetDescriptor::~BasicTargetDescriptor() { | |
22 } | |
23 | |
24 scoped_refptr<DevToolsAgentHost> BasicTargetDescriptor::GetAgentHost() const { | |
25 return agent_host_; | |
26 } | |
27 | |
28 } // namespace devtools_discovery | |
OLD | NEW |