blob: 01b58ad2ab2a3c09019bf44148dd63a56a9c1aaa [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/protocol/inspector_handler.h"
#include "content/browser/frame_host/render_frame_host_impl.h"
namespace content {
namespace devtools {
namespace inspector {
using Response = DevToolsProtocolClient::Response;
InspectorHandler::InspectorHandler()
: host_(nullptr) {
}
InspectorHandler::~InspectorHandler() {
}
void InspectorHandler::SetClient(scoped_ptr<Client> client) {
client_.swap(client);
}
void InspectorHandler::SetRenderFrameHost(RenderFrameHostImpl* host) {
host_ = host;
}
void InspectorHandler::TargetCrashed() {
client_->TargetCrashed(TargetCrashedParams::Create());
}
Response InspectorHandler::Enable() {
if (host_ && !host_->IsRenderFrameLive())
client_->TargetCrashed(TargetCrashedParams::Create());
return Response::FallThrough();
}
} // namespace inspector
} // namespace devtools
} // namespace content