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..4187a7639a86a199373d4fce0f7b748f30707096 |
--- /dev/null |
+++ b/content/browser/devtools/protocol/security_handler.cc |
@@ -0,0 +1,32 @@ |
+// 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() { |
+} |
+ |
+void SecurityHandler::SetClient(scoped_ptr<Client> client) { |
+} |
+ |
+Response SecurityHandler::Enable() { |
+ return Response::OK(); |
+} |
+ |
+Response SecurityHandler::Disable() { |
+ return Response::OK(); |
+} |
+ |
+} // namespace security |
+} // namespace devtools |
+} // namespace content |