Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(607)

Unified Diff: content/browser/devtools/protocol/system_info_handler.cc

Issue 658163003: [DevTools] Added browser protocol to handler generator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@singleUse
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698