diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-26 19:06:17 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-26 19:06:17 +0000 |
commit | 768c547ef7c680bcfcf2616bf6e833849aea6db1 (patch) | |
tree | 6264e6274a36648ac8b5af51d2d02fc38dff5b2c /chrome/browser/safe_browsing/malware_details.h | |
parent | c95c0219b5d1ea69f824c9b98d63919cba7ccd10 (diff) | |
download | chromium_src-768c547ef7c680bcfcf2616bf6e833849aea6db1.zip chromium_src-768c547ef7c680bcfcf2616bf6e833849aea6db1.tar.gz chromium_src-768c547ef7c680bcfcf2616bf6e833849aea6db1.tar.bz2 |
Move most of the remaining users of WebContentsObserver::tab_contents() to use web_contents().
BUG=98716
TBR=joi
Review URL: http://codereview.chromium.org/9030010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115800 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/safe_browsing/malware_details.h')
-rw-r--r-- | chrome/browser/safe_browsing/malware_details.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/safe_browsing/malware_details.h b/chrome/browser/safe_browsing/malware_details.h index 8a40109..a195f8a 100644 --- a/chrome/browser/safe_browsing/malware_details.h +++ b/chrome/browser/safe_browsing/malware_details.h @@ -44,7 +44,7 @@ class MalwareDetails : public base::RefCountedThreadSafe<MalwareDetails>, // Constructs a new MalwareDetails instance, using the factory. static MalwareDetails* NewMalwareDetails( SafeBrowsingService* sb_service, - TabContents* tab_contents, + content::WebContents* web_contents, const SafeBrowsingService::UnsafeResource& resource); // Makes the passed |factory| the factory used to instanciate @@ -71,7 +71,7 @@ class MalwareDetails : public base::RefCountedThreadSafe<MalwareDetails>, friend class MalwareDetailsFactoryImpl; MalwareDetails(SafeBrowsingService* sb_service, - TabContents* tab_contents, + content::WebContents* web_contents, const SafeBrowsingService::UnsafeResource& resource); virtual ~MalwareDetails(); @@ -153,7 +153,7 @@ class MalwareDetailsFactory { virtual MalwareDetails* CreateMalwareDetails( SafeBrowsingService* sb_service, - TabContents* tab_contents, + content::WebContents* web_contents, const SafeBrowsingService::UnsafeResource& unsafe_resource) = 0; }; |