chromium/content/browser/devtools/forwarding_agent_host.cc

// Copyright 2014 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/browser/devtools/forwarding_agent_host.h"

#include "content/browser/devtools/devtools_session.h"
#include "content/public/browser/devtools_external_agent_proxy_delegate.h"

namespace content {

ForwardingAgentHost::ForwardingAgentHost(
    const std::string& id,
    std::unique_ptr<DevToolsExternalAgentProxyDelegate> delegate)
      :{}

ForwardingAgentHost::~ForwardingAgentHost() = default;

bool ForwardingAgentHost::AttachSession(DevToolsSession* session,
                                        bool acquire_wake_lock) {}

void ForwardingAgentHost::DetachSession(DevToolsSession* session) {}

std::string ForwardingAgentHost::GetType() {}

std::string ForwardingAgentHost::GetTitle() {}

GURL ForwardingAgentHost::GetURL() {}

GURL ForwardingAgentHost::GetFaviconURL() {}

std::string ForwardingAgentHost::GetFrontendURL() {}

bool ForwardingAgentHost::Activate() {}

void ForwardingAgentHost::Reload() {}

bool ForwardingAgentHost::Close() {}

base::TimeTicks ForwardingAgentHost::GetLastActivityTime() {}

std::string ForwardingAgentHost::GetDescription() {}

}  // content