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

Side by Side Diff: chrome/browser/ssl/chrome_security_state_model_client.h

Issue 2461093002: Revert of Trigger Dangerous indicator for unsafe subresources (Closed)
Patch Set: 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_SSL_CHROME_SECURITY_STATE_MODEL_CLIENT_H_ 5 #ifndef CHROME_BROWSER_SSL_CHROME_SECURITY_STATE_MODEL_CLIENT_H_
6 #define CHROME_BROWSER_SSL_CHROME_SECURITY_STATE_MODEL_CLIENT_H_ 6 #define CHROME_BROWSER_SSL_CHROME_SECURITY_STATE_MODEL_CLIENT_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 14 matching lines...) Expand all
25 class ChromeSecurityStateModelClient 25 class ChromeSecurityStateModelClient
26 : public security_state::SecurityStateModelClient, 26 : public security_state::SecurityStateModelClient,
27 public content::WebContentsObserver, 27 public content::WebContentsObserver,
28 public content::WebContentsUserData<ChromeSecurityStateModelClient> { 28 public content::WebContentsUserData<ChromeSecurityStateModelClient> {
29 public: 29 public:
30 ~ChromeSecurityStateModelClient() override; 30 ~ChromeSecurityStateModelClient() override;
31 31
32 void GetSecurityInfo( 32 void GetSecurityInfo(
33 security_state::SecurityStateModel::SecurityInfo* result) const; 33 security_state::SecurityStateModel::SecurityInfo* result) const;
34 34
35 // Called when the NavigationEntry's SSLStatus or other security 35 // Called when the NavigationEntry's SSLStatus changes.
36 // information changes. 36 void VisibleSSLStateChanged();
37 void VisibleSecurityStateChanged();
38 37
39 // content::WebContentsObserver: 38 // content::WebContentsObserver:
40 void DidFinishNavigation( 39 void DidFinishNavigation(
41 content::NavigationHandle* navigation_handle) override; 40 content::NavigationHandle* navigation_handle) override;
42 41
43 // Returns the SecurityStyle that should be applied to a WebContents 42 // Returns the SecurityStyle that should be applied to a WebContents
44 // with the given |security_info|. Populates 43 // with the given |security_info|. Populates
45 // |security_style_explanations| to explain why the returned 44 // |security_style_explanations| to explain why the returned
46 // SecurityStyle was chosen. 45 // SecurityStyle was chosen.
47 static blink::WebSecurityStyle GetSecurityStyle( 46 static blink::WebSecurityStyle GetSecurityStyle(
(...skipping 16 matching lines...) Expand all
64 // True if a console has been logged about an omnibox warning that 63 // True if a console has been logged about an omnibox warning that
65 // will be shown in future versions of Chrome for insecure HTTP 64 // will be shown in future versions of Chrome for insecure HTTP
66 // pages. This message should only be logged once per main-frame 65 // pages. This message should only be logged once per main-frame
67 // navigation. 66 // navigation.
68 bool logged_http_warning_on_current_navigation_; 67 bool logged_http_warning_on_current_navigation_;
69 68
70 DISALLOW_COPY_AND_ASSIGN(ChromeSecurityStateModelClient); 69 DISALLOW_COPY_AND_ASSIGN(ChromeSecurityStateModelClient);
71 }; 70 };
72 71
73 #endif // CHROME_BROWSER_SSL_CHROME_SECURITY_STATE_MODEL_CLIENT_H_ 72 #endif // CHROME_BROWSER_SSL_CHROME_SECURITY_STATE_MODEL_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/ui_manager_unittest.cc ('k') | chrome/browser/ssl/chrome_security_state_model_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698