1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42

content / public / browser / devtools_agent_host_observer.cc [blame]

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/public/browser/devtools_agent_host_observer.h"

namespace content {

DevToolsAgentHostObserver::~DevToolsAgentHostObserver() {
}

bool DevToolsAgentHostObserver::ShouldForceDevToolsAgentHostCreation() {
  return false;
}

void DevToolsAgentHostObserver::DevToolsAgentHostCreated(
    DevToolsAgentHost* agent_host) {
}

void DevToolsAgentHostObserver::DevToolsAgentHostNavigated(
    DevToolsAgentHost* agent_host) {}

void DevToolsAgentHostObserver::DevToolsAgentHostProcessChanged(
    DevToolsAgentHost* agent_host) {}

void DevToolsAgentHostObserver::DevToolsAgentHostAttached(
    DevToolsAgentHost* agent_host) {
}

void DevToolsAgentHostObserver::DevToolsAgentHostDetached(
    DevToolsAgentHost* agent_host) {
}

void DevToolsAgentHostObserver::DevToolsAgentHostDestroyed(
    DevToolsAgentHost* agent_host) {
}

void DevToolsAgentHostObserver::DevToolsAgentHostCrashed(
    DevToolsAgentHost* agent_host,
    base::TerminationStatus status) {}

}  // namespace content