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

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

Issue 1165293005: Add security handler stub for sending the lock icon status to DevTools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: virtual destructor + SetClient Created 5 years, 6 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/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..d3b52e4a8c8fb879a8848f2e36cd6b4801c178ea
--- /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<DevToolsProtocolClient> client) {
+}
+
+Response SecurityHandler::Enable() {
+ return Response::OK();
+}
+
+Response SecurityHandler::Disable() {
+ return Response::OK();
+}
+
+} // namespace security
+} // namespace devtools
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698