| Index: content/public/browser/devtools_agent_host_observer.cc
|
| diff --git a/content/public/browser/devtools_agent_host_observer.cc b/content/public/browser/devtools_agent_host_observer.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0d5da2f586172498885396501c7433f320a5432f
|
| --- /dev/null
|
| +++ b/content/public/browser/devtools_agent_host_observer.cc
|
| @@ -0,0 +1,32 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// 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::DevToolsAgentHostAttached(
|
| + DevToolsAgentHost* agent_host) {
|
| +}
|
| +
|
| +void DevToolsAgentHostObserver::DevToolsAgentHostDetached(
|
| + DevToolsAgentHost* agent_host) {
|
| +}
|
| +
|
| +void DevToolsAgentHostObserver::DevToolsAgentHostDestroyed(
|
| + DevToolsAgentHost* agent_host) {
|
| +}
|
| +
|
| +} // namespace content
|
|
|