Change next_proto member type.
[chromium-blink-merge.git] / content / browser / devtools / protocol / worker_handler.cc
blob9baee177fec1142bb8773a4ded58ac9c327be41e
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/worker_handler.h"
7 namespace content {
8 namespace devtools {
9 namespace worker {
11 typedef DevToolsProtocolClient::Response Response;
13 WorkerHandler::WorkerHandler() {
16 WorkerHandler::~WorkerHandler() {
19 void WorkerHandler::SetClient(scoped_ptr<Client> client) {
20 client_.swap(client);
23 Response WorkerHandler::DisconnectFromWorker(int worker_id) {
24 return Response::FallThrough();
27 } // namespace worker
28 } // namespace devtools
29 } // namespace content