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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
// Copyright 2020 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/protocol/audits_handler.h"
#include "content/browser/devtools/devtools_agent_host_impl.h"
#include "content/browser/devtools/devtools_issue_storage.h"
#include "content/browser/devtools/render_frame_devtools_agent_host.h"
#include "content/browser/renderer_host/frame_tree_node.h"
#include "content/browser/renderer_host/render_frame_host_impl.h"
#include "content/public/browser/web_contents.h"
namespace content {
namespace protocol {
AuditsHandler::AuditsHandler()
: DevToolsDomainHandler(Audits::Metainfo::domainName) {}
AuditsHandler::~AuditsHandler() = default;
// static
std::vector<AuditsHandler*> AuditsHandler::ForAgentHost(
DevToolsAgentHostImpl* host) {
return host->HandlersByName<AuditsHandler>(Audits::Metainfo::domainName);
}
void AuditsHandler::SetRenderer(int process_host_id,
RenderFrameHostImpl* frame_host) {
host_ = frame_host;
}
void AuditsHandler::Wire(UberDispatcher* dispatcher) {
frontend_ = std::make_unique<Audits::Frontend>(dispatcher->channel());
Audits::Dispatcher::wire(dispatcher, this);
}
DispatchResponse AuditsHandler::Disable() {
enabled_ = false;
return Response::FallThrough();
}
namespace {
void SendStoredIssuesForFrameToAgent(RenderFrameHostImpl* rfh,
protocol::AuditsHandler* handler) {
// Check the storage first. No need to do any work in case its empty.
DevToolsIssueStorage* issue_storage =
DevToolsIssueStorage::GetForPage(rfh->GetOutermostMainFrame()->GetPage());
if (!issue_storage)
return;
auto issues = issue_storage->FindIssuesForAgentOf(rfh);
for (auto* const issue : issues) {
handler->OnIssueAdded(issue);
}
}
} // namespace
DispatchResponse AuditsHandler::Enable() {
if (enabled_) {
return Response::FallThrough();
}
enabled_ = true;
if (host_) {
SendStoredIssuesForFrameToAgent(host_, this);
}
return Response::FallThrough();
}
void AuditsHandler::OnIssueAdded(
const protocol::Audits::InspectorIssue* issue) {
if (enabled_) {
frontend_->IssueAdded(issue->Clone());
}
}
} // namespace protocol
} // namespace content
|