OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #include "content/browser/devtools/protocol/system_info_handler.h" |
| 6 |
| 7 namespace content { |
| 8 namespace devtools { |
| 9 namespace system_info { |
| 10 |
| 11 typedef DevToolsProtocolClient::Response Response; |
| 12 |
| 13 SystemInfoHandler::SystemInfoHandler() { |
| 14 } |
| 15 |
| 16 SystemInfoHandler::~SystemInfoHandler() { |
| 17 } |
| 18 |
| 19 Response SystemInfoHandler::GetInfo(scoped_refptr<SystemInfo>* info) { |
| 20 return Response::FallThrough(); |
| 21 } |
| 22 |
| 23 } // namespace system_info |
| 24 } // namespace devtools |
| 25 } // namespace content |
OLD | NEW |