Change next_proto member type.
[chromium-blink-merge.git] / content / browser / devtools / protocol / inspector_handler.cc
blob8378e5a1e2aa82f4ea5bac3d6525c7d46cf8b87a
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/browser/devtools/protocol/inspector_handler.h"
7 namespace content {
8 namespace devtools {
9 namespace inspector {
11 InspectorHandler::InspectorHandler() {
14 InspectorHandler::~InspectorHandler() {
17 void InspectorHandler::SetClient(scoped_ptr<Client> client) {
18 client_.swap(client);
21 void InspectorHandler::TargetCrashed() {
22 client_->TargetCrashed(TargetCrashedParams::Create());
25 } // namespace inspector
26 } // namespace devtools
27 } // namespace content