blob: 84fd5e2f7d9c3ac051cc0d09617c5e3c44192129 [file] [log] [blame]
// Copyright 2014 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/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)
: DevToolsAgentHostImpl(id),
delegate_(std::move(delegate)) {
NotifyCreated();
}
ForwardingAgentHost::~ForwardingAgentHost() {
}
bool ForwardingAgentHost::AttachSession(DevToolsSession* session) {
session->TurnIntoExternalProxy(delegate_.get());
return true;
}
void ForwardingAgentHost::DetachSession(DevToolsSession* session) {}
std::string ForwardingAgentHost::GetType() {
return delegate_->GetType();
}
std::string ForwardingAgentHost::GetTitle() {
return delegate_->GetTitle();
}
GURL ForwardingAgentHost::GetURL() {
return delegate_->GetURL();
}
GURL ForwardingAgentHost::GetFaviconURL() {
return delegate_->GetFaviconURL();
}
std::string ForwardingAgentHost::GetFrontendURL() {
return delegate_->GetFrontendURL();
}
bool ForwardingAgentHost::Activate() {
return delegate_->Activate();
}
void ForwardingAgentHost::Reload() {
delegate_->Reload();
}
bool ForwardingAgentHost::Close() {
return delegate_->Close();
}
base::TimeTicks ForwardingAgentHost::GetLastActivityTime() {
return delegate_->GetLastActivityTime();
}
} // content