Chromium Code Reviews| Index: content/browser/devtools/protocol/system_info_handler.cc |
| diff --git a/content/browser/devtools/protocol/system_info_handler.cc b/content/browser/devtools/protocol/system_info_handler.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f1149e7fd82ec30d0cf631ea995da045ad22df19 |
| --- /dev/null |
| +++ b/content/browser/devtools/protocol/system_info_handler.cc |
| @@ -0,0 +1,29 @@ |
| +// 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/system_info_handler.h" |
| + |
| +#include "base/strings/utf_string_conversions.h" |
|
dgozman
2014/10/17 13:11:28
Includes are unnecessary.
vkuzkokov
2014/10/17 15:53:17
Done.
|
| +#include "content/browser/child_process_security_policy_impl.h" |
| +#include "content/browser/renderer_host/render_view_host_impl.h" |
| + |
| +namespace content { |
| +namespace devtools { |
| +namespace system_info { |
| + |
| +typedef DevToolsProtocolClient::Response Response; |
| + |
| +SystemInfoHandler::SystemInfoHandler() { |
| +} |
| + |
| +SystemInfoHandler::~SystemInfoHandler() { |
| +} |
| + |
| +Response SystemInfoHandler::GetInfo(SystemInfo* info) { |
| + return Response::FallThrough(); |
| +} |
| + |
| +} // namespace system_info |
| +} // namespace devtools |
| +} // namespace content |