| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/safe_browsing/safe_browsing_tab_observer.h" | 5 #include "chrome/browser/safe_browsing/safe_browsing_tab_observer.h" |
| 6 | 6 |
| 7 #include "chrome/browser/browser_process.h" | 7 #include "chrome/browser/browser_process.h" |
| 8 #include "chrome/browser/prefs/pref_service.h" | 8 #include "chrome/browser/prefs/pref_service.h" |
| 9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
| 10 #include "chrome/browser/safe_browsing/client_side_detection_host.h" | 10 #include "chrome/browser/safe_browsing/client_side_detection_host.h" |
| 11 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 11 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
| 12 #include "chrome/common/chrome_notification_types.h" | 12 #include "chrome/common/chrome_notification_types.h" |
| 13 #include "chrome/common/pref_names.h" | 13 #include "chrome/common/pref_names.h" |
| 14 #include "chrome/common/render_messages.h" | 14 #include "chrome/common/render_messages.h" |
| 15 #include "content/browser/renderer_host/render_view_host.h" | 15 #include "content/browser/renderer_host/render_view_host.h" |
| 16 #include "content/browser/tab_contents/tab_contents.h" |
| 16 #include "content/public/browser/notification_details.h" | 17 #include "content/public/browser/notification_details.h" |
| 17 #include "content/public/browser/notification_source.h" | 18 #include "content/public/browser/notification_source.h" |
| 18 | 19 |
| 19 namespace safe_browsing { | 20 namespace safe_browsing { |
| 20 | 21 |
| 21 SafeBrowsingTabObserver::SafeBrowsingTabObserver( | 22 SafeBrowsingTabObserver::SafeBrowsingTabObserver( |
| 22 TabContentsWrapper* wrapper) : wrapper_(wrapper) { | 23 TabContentsWrapper* wrapper) : wrapper_(wrapper) { |
| 23 #if defined(ENABLE_SAFE_BROWSING) | 24 #if defined(ENABLE_SAFE_BROWSING) |
| 24 PrefService* prefs = wrapper_->profile()->GetPrefs(); | 25 PrefService* prefs = wrapper_->profile()->GetPrefs(); |
| 25 if (prefs) { | 26 if (prefs) { |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 safebrowsing_detection_host_.reset(); | 80 safebrowsing_detection_host_.reset(); |
| 80 } | 81 } |
| 81 | 82 |
| 82 RenderViewHost* rvh = wrapper_->tab_contents()->render_view_host(); | 83 RenderViewHost* rvh = wrapper_->tab_contents()->render_view_host(); |
| 83 rvh->Send(new ChromeViewMsg_SetClientSidePhishingDetection(rvh->routing_id(), | 84 rvh->Send(new ChromeViewMsg_SetClientSidePhishingDetection(rvh->routing_id(), |
| 84 safe_browsing)); | 85 safe_browsing)); |
| 85 #endif | 86 #endif |
| 86 } | 87 } |
| 87 | 88 |
| 88 } // namespace safe_browsing | 89 } // namespace safe_browsing |
| OLD | NEW |