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..2a0366e95900411c153f7dad7269facb2305eb05 |
--- /dev/null |
+++ b/content/browser/devtools/protocol/system_info_handler.cc |
@@ -0,0 +1,25 @@ |
+// 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" |
+ |
+namespace content { |
+namespace devtools { |
+namespace system_info { |
+ |
+typedef DevToolsProtocolClient::Response Response; |
+ |
+SystemInfoHandler::SystemInfoHandler() { |
+} |
+ |
+SystemInfoHandler::~SystemInfoHandler() { |
+} |
+ |
+Response SystemInfoHandler::GetInfo(scoped_refptr<SystemInfo>* info) { |
+ return Response::FallThrough(); |
+} |
+ |
+} // namespace system_info |
+} // namespace devtools |
+} // namespace content |