OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Classes for managing the SafeBrowsing interstitial pages. | 5 // Classes for managing the SafeBrowsing interstitial pages. |
6 // | 6 // |
7 // When a user is about to visit a page the SafeBrowsing system has deemed to | 7 // When a user is about to visit a page the SafeBrowsing system has deemed to |
8 // be malicious, either as malware or a phishing page, we show an interstitial | 8 // be malicious, either as malware or a phishing page, we show an interstitial |
9 // page with some options (go back, continue) to give the user a chance to avoid | 9 // page with some options (go back, continue) to give the user a chance to avoid |
10 // the harmful page. | 10 // the harmful page. |
(...skipping 21 matching lines...) Expand all Loading... |
32 #include <map> | 32 #include <map> |
33 #include <vector> | 33 #include <vector> |
34 | 34 |
35 #include "chrome/browser/tab_contents/interstitial_page.h" | 35 #include "chrome/browser/tab_contents/interstitial_page.h" |
36 #include "chrome/browser/safe_browsing/safe_browsing_service.h" | 36 #include "chrome/browser/safe_browsing/safe_browsing_service.h" |
37 #include "googleurl/src/gurl.h" | 37 #include "googleurl/src/gurl.h" |
38 | 38 |
39 class DictionaryValue; | 39 class DictionaryValue; |
40 class MessageLoop; | 40 class MessageLoop; |
41 class SafeBrowsingBlockingPageFactory; | 41 class SafeBrowsingBlockingPageFactory; |
| 42 class SafeBrowsingMalwareReport; |
42 class TabContents; | 43 class TabContents; |
43 | 44 |
44 class SafeBrowsingBlockingPage : public InterstitialPage { | 45 class SafeBrowsingBlockingPage : public InterstitialPage { |
45 public: | 46 public: |
46 virtual ~SafeBrowsingBlockingPage(); | 47 virtual ~SafeBrowsingBlockingPage(); |
47 | 48 |
48 // Shows a blocking page warning the user about phishing/malware for a | 49 // Shows a blocking page warning the user about phishing/malware for a |
49 // specific resource. | 50 // specific resource. |
50 // You can call this method several times, if an interstitial is already | 51 // You can call this method several times, if an interstitial is already |
51 // showing, the new one will be queued and displayed if the user decides | 52 // showing, the new one will be queued and displayed if the user decides |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 const std::wstring& title, | 96 const std::wstring& title, |
96 const std::wstring& headline, | 97 const std::wstring& headline, |
97 const std::wstring& description1, | 98 const std::wstring& description1, |
98 const std::wstring& description2, | 99 const std::wstring& description2, |
99 const std::wstring& description3); | 100 const std::wstring& description3); |
100 | 101 |
101 // Records a user action for this interstitial, using the form | 102 // Records a user action for this interstitial, using the form |
102 // SBInterstitial[Phishing|Malware|Multiple][Show|Proceed|DontProceed]. | 103 // SBInterstitial[Phishing|Malware|Multiple][Show|Proceed|DontProceed]. |
103 void RecordUserAction(BlockingPageEvent event); | 104 void RecordUserAction(BlockingPageEvent event); |
104 | 105 |
| 106 // See if we should even show the malware report option. For example, we |
| 107 // don't show it in incognito mode. |
| 108 bool CanShowMalwareReportOption(); |
| 109 |
| 110 // Called when the insterstitial is going away. If there is a pending malware |
| 111 // report, we look at the user's preferences, and if enabled, the |
| 112 // report is scheduled to be sent on the |sb_service_|. |
| 113 void FinishMalwareReport(); |
| 114 |
105 // A list of SafeBrowsingService::UnsafeResource for a tab that the user | 115 // A list of SafeBrowsingService::UnsafeResource for a tab that the user |
106 // should be warned about. They are queued when displaying more than one | 116 // should be warned about. They are queued when displaying more than one |
107 // interstitial at a time. | 117 // interstitial at a time. |
108 typedef std::map<TabContents*, UnsafeResourceList> UnsafeResourceMap; | 118 typedef std::map<TabContents*, UnsafeResourceList> UnsafeResourceMap; |
109 static UnsafeResourceMap* GetUnsafeResourcesMap(); | 119 static UnsafeResourceMap* GetUnsafeResourcesMap(); |
110 | 120 |
111 // Notifies the SafeBrowsingService on the IO thread whether to proceed or not | 121 // Notifies the SafeBrowsingService on the IO thread whether to proceed or not |
112 // for the |resources|. | 122 // for the |resources|. |
113 static void NotifySafeBrowsingService(SafeBrowsingService* sb_service, | 123 static void NotifySafeBrowsingService(SafeBrowsingService* sb_service, |
114 const UnsafeResourceList& resources, | 124 const UnsafeResourceList& resources, |
(...skipping 12 matching lines...) Expand all Loading... |
127 // Whether the flagged resource is the main page (or a sub-resource is false). | 137 // Whether the flagged resource is the main page (or a sub-resource is false). |
128 bool is_main_frame_; | 138 bool is_main_frame_; |
129 | 139 |
130 // The index of a navigation entry that should be removed when DontProceed() | 140 // The index of a navigation entry that should be removed when DontProceed() |
131 // is invoked, -1 if not entry should be removed. | 141 // is invoked, -1 if not entry should be removed. |
132 int navigation_entry_index_to_remove_; | 142 int navigation_entry_index_to_remove_; |
133 | 143 |
134 // The list of unsafe resources this page is warning about. | 144 // The list of unsafe resources this page is warning about. |
135 UnsafeResourceList unsafe_resources_; | 145 UnsafeResourceList unsafe_resources_; |
136 | 146 |
| 147 // A malware report that we start generating when the blocking page is |
| 148 // shown. The report will be sent when the warning is gone |
| 149 // (if the user enables the feature). |
| 150 scoped_refptr<SafeBrowsingMalwareReport> malware_report_; |
| 151 |
137 // The factory used to instanciate SafeBrowsingBlockingPage objects. | 152 // The factory used to instanciate SafeBrowsingBlockingPage objects. |
138 // Usefull for tests, so they can provide their own implementation of | 153 // Usefull for tests, so they can provide their own implementation of |
139 // SafeBrowsingBlockingPage. | 154 // SafeBrowsingBlockingPage. |
140 static SafeBrowsingBlockingPageFactory* factory_; | 155 static SafeBrowsingBlockingPageFactory* factory_; |
141 | 156 |
142 DISALLOW_COPY_AND_ASSIGN(SafeBrowsingBlockingPage); | 157 DISALLOW_COPY_AND_ASSIGN(SafeBrowsingBlockingPage); |
143 }; | 158 }; |
144 | 159 |
145 // Factory for creating SafeBrowsingBlockingPage. Useful for tests. | 160 // Factory for creating SafeBrowsingBlockingPage. Useful for tests. |
146 class SafeBrowsingBlockingPageFactory { | 161 class SafeBrowsingBlockingPageFactory { |
147 public: | 162 public: |
148 virtual ~SafeBrowsingBlockingPageFactory() { } | 163 virtual ~SafeBrowsingBlockingPageFactory() { } |
149 | 164 |
150 virtual SafeBrowsingBlockingPage* CreateSafeBrowsingPage( | 165 virtual SafeBrowsingBlockingPage* CreateSafeBrowsingPage( |
151 SafeBrowsingService* service, | 166 SafeBrowsingService* service, |
152 TabContents* tab_contents, | 167 TabContents* tab_contents, |
153 const SafeBrowsingBlockingPage::UnsafeResourceList& unsafe_resources) = 0; | 168 const SafeBrowsingBlockingPage::UnsafeResourceList& unsafe_resources) = 0; |
154 }; | 169 }; |
155 | 170 |
156 #endif // CHROME_BROWSER_SAFE_BROWSING_SAFE_BROWSING_BLOCKING_PAGE_H_ | 171 #endif // CHROME_BROWSER_SAFE_BROWSING_SAFE_BROWSING_BLOCKING_PAGE_H_ |
OLD | NEW |