Index: content/browser/devtools/protocol/security_handler.cc |
diff --git a/content/browser/devtools/protocol/security_handler.cc b/content/browser/devtools/protocol/security_handler.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3dcc646336a00be28e616e8ccc2dc83cfc3ca335 |
--- /dev/null |
+++ b/content/browser/devtools/protocol/security_handler.cc |
@@ -0,0 +1,29 @@ |
+// Copyright 2015 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/security_handler.h" |
+ |
+namespace content { |
+namespace devtools { |
+namespace security { |
+ |
+typedef DevToolsProtocolClient::Response Response; |
+ |
+SecurityHandler::SecurityHandler() { |
+} |
+ |
+SecurityHandler::~SecurityHandler() { |
+} |
+ |
+Response SecurityHandler::Enable() { |
+ return Response::OK(); |
+} |
+ |
+Response SecurityHandler::Disable() { |
+ return Response::OK(); |
+} |
+ |
+} // namespace security |
+} // namespace devtools |
+} // namespace content |