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

Unified Diff: components/security_state/content/content_utils.h

Issue 2448943002: Refactor SecurityStateModel/Clients for simplicity and reusability. (Closed)
Patch Set: sync. Created 4 years, 1 month 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
« no previous file with comments | « components/security_state/content/DEPS ('k') | components/security_state/content/content_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/security_state/content/content_utils.h
diff --git a/components/security_state/content/content_utils.h b/components/security_state/content/content_utils.h
new file mode 100644
index 0000000000000000000000000000000000000000..d0053f4c761c0a34cbc565da3776d03119918870
--- /dev/null
+++ b/components/security_state/content/content_utils.h
@@ -0,0 +1,39 @@
+// Copyright 2016 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 COMPONENTS_SECURITY_STATE_CONTENT_CONTENT_UTILS_H_
+#define COMPONENTS_SECURITY_STATE_CONTENT_CONTENT_UTILS_H_
+
+#include <memory>
+
+#include "third_party/WebKit/public/platform/WebSecurityStyle.h"
+
+namespace content {
+struct SecurityStyleExplanations;
+class WebContents;
+} // namespace content
+
+namespace security_state {
+struct SecurityInfo;
+struct VisibleSecurityState;
+} // namespace security_state
+
+namespace security_state {
+
+// Retrieves the visible security state that is relevant to GetSecurityInfo()
+// from the current page in |web_contents|.
+std::unique_ptr<security_state::VisibleSecurityState> GetVisibleSecurityState(
+ content::WebContents* web_contents);
+
+// Returns the SecurityStyle that should be applied to a WebContents
+// with the given |security_info|. Populates
+// |security_style_explanations| to explain why the returned
+// SecurityStyle was chosen.
+blink::WebSecurityStyle GetSecurityStyle(
+ const security_state::SecurityInfo& security_info,
+ content::SecurityStyleExplanations* security_style_explanations);
+
+} // namespace security_state
+
+#endif // COMPONENTS_SECURITY_STATE_CONTENT_CONTENT_UTILS_H_
« no previous file with comments | « components/security_state/content/DEPS ('k') | components/security_state/content/content_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698