summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/devtools/protocol/security_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/devtools/protocol/security_handler.h')
-rw-r--r--chromium/chrome/browser/devtools/protocol/security_handler.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/chromium/chrome/browser/devtools/protocol/security_handler.h b/chromium/chrome/browser/devtools/protocol/security_handler.h
new file mode 100644
index 00000000000..e4f3c880dac
--- /dev/null
+++ b/chromium/chrome/browser/devtools/protocol/security_handler.h
@@ -0,0 +1,37 @@
+// Copyright 2019 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.
+
+#ifndef CHROME_BROWSER_DEVTOOLS_PROTOCOL_SECURITY_HANDLER_H_
+#define CHROME_BROWSER_DEVTOOLS_PROTOCOL_SECURITY_HANDLER_H_
+
+#include "chrome/browser/devtools/protocol/forward.h"
+#include "chrome/browser/devtools/protocol/security.h"
+#include "content/public/browser/web_contents_observer.h"
+
+namespace content {
+class WebContents;
+} // namespace content
+
+class SecurityHandler : public protocol::Security::Backend,
+ public content::WebContentsObserver {
+ public:
+ SecurityHandler(content::WebContents* web_contents,
+ protocol::UberDispatcher* dispatcher);
+ ~SecurityHandler() override;
+
+ // Security::Backend:
+ protocol::Response Enable() override;
+ protocol::Response Disable() override;
+
+ private:
+ // WebContentsObserver overrides
+ void DidChangeVisibleSecurityState() override;
+
+ bool enabled_ = false;
+ std::unique_ptr<protocol::Security::Frontend> frontend_;
+
+ DISALLOW_COPY_AND_ASSIGN(SecurityHandler);
+};
+
+#endif // CHROME_BROWSER_DEVTOOLS_PROTOCOL_SECURITY_HANDLER_H_