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

Side by Side Diff: content/public/browser/devtools_agent_host_observer.cc

Issue 2408133004: [DevTools] Implement Target.setDiscoverTargets method. (Closed)
Patch Set: rebased Created 4 years, 2 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
OLDNEW
(Empty)
1 // Copyright 2016 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/public/browser/devtools_agent_host_observer.h"
6
7 namespace content {
8
9 DevToolsAgentHostObserver::~DevToolsAgentHostObserver() {
10 }
11
12 bool DevToolsAgentHostObserver::ShouldForceDevToolsAgentHostCreation() {
13 return false;
14 }
15
16 void DevToolsAgentHostObserver::DevToolsAgentHostCreated(
17 DevToolsAgentHost* agent_host) {
18 }
19
20 void DevToolsAgentHostObserver::DevToolsAgentHostAttached(
21 DevToolsAgentHost* agent_host) {
22 }
23
24 void DevToolsAgentHostObserver::DevToolsAgentHostDetached(
25 DevToolsAgentHost* agent_host) {
26 }
27
28 void DevToolsAgentHostObserver::DevToolsAgentHostDestroyed(
29 DevToolsAgentHost* agent_host) {
30 }
31
32 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/devtools_agent_host_observer.h ('k') | third_party/WebKit/Source/core/inspector/browser_protocol.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698