Home | History | Annotate | Download | only in safe_browsing

Lines Matching refs:is_phishing

146   void SetCache(const GURL& gurl, bool is_phishing, base::Time time) {
148 make_linked_ptr(new ClientSideDetectionService::CacheState(is_phishing,
195 bool is_phishing;
197 GURL("http://first.url.com"), &is_phishing));
198 EXPECT_FALSE(is_phishing);
200 GURL("http://third.url.com"), &is_phishing));
202 GURL("http://fourth.url.com"), &is_phishing));
203 EXPECT_TRUE(is_phishing);
231 void SendRequestDone(GURL phishing_url, bool is_phishing) {
233 is_phishing_ = is_phishing;
433 bool is_phishing;
435 EXPECT_TRUE(csd_service_->GetValidCachedResult(url, &is_phishing));
436 EXPECT_TRUE(is_phishing);