[DevTools] Added browser protocol to handler generator
[chromium-blink-merge.git] / content / browser / devtools / protocol / system_info_handler.cc
blob2a0366e95900411c153f7dad7269facb2305eb05
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/system_info_handler.h"
7 namespace content {
8 namespace devtools {
9 namespace system_info {
11 typedef DevToolsProtocolClient::Response Response;
13 SystemInfoHandler::SystemInfoHandler() {
16 SystemInfoHandler::~SystemInfoHandler() {
19 Response SystemInfoHandler::GetInfo(scoped_refptr<SystemInfo>* info) {
20 return Response::FallThrough();
23 } // namespace system_info
24 } // namespace devtools
25 } // namespace content