blob: ef1b1a85e634e3d890b0a4bde661873cd1909222 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SAFE_BROWSING_CLIENT_H_
#define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SAFE_BROWSING_CLIENT_H_
#pragma once
#include "base/callback.h"
#include "base/ref_counted.h"
#include "base/time.h"
#include "chrome/browser/safe_browsing/safe_browsing_service.h"
struct DownloadCreateInfo;
// This is a helper class used by DownloadManager to check a download URL with
// SafeBrowsingService. The client is refcounted and will be released once
// there is no reference to it.
// Usage:
// {
// scoped_refptr<DownloadSBClient> client_ = new DownloadSBClient(...);
// client_->CheckDownloadUrl(NewCallback(this, &DownloadManager::CallBack));
// }
// DownloadManager::CallBack(...) {
// // After this, the |client_| is gone.
// }
class DownloadSBClient
: public SafeBrowsingService::Client,
public base::RefCountedThreadSafe<DownloadSBClient> {
public:
typedef Callback2<DownloadCreateInfo*, bool>::Type DoneCallback;
explicit DownloadSBClient(DownloadCreateInfo* info);
// Note: This method can only be called once per DownloadSBClient instance.
void CheckDownloadUrl(DoneCallback* callback);
protected:
// Call SafeBrowsingService on IO thread to verify the download URL.
void CheckDownloadUrlOnIOThread();
// The callback interface for SafeBrowsingService::Client.
// Called when the result of checking a download URL is known.
virtual void OnDownloadUrlCheckResult(
const GURL& url, SafeBrowsingService::UrlCheckResult result);
private:
// Enumerate for histogramming purposes.
// DO NOT CHANGE THE ORDERING OF THESE VALUES (different histogram data will
// be mixed together based on their values).
enum SBStatsType {
DOWNLOAD_URL_CHECKS_TOTAL,
DOWNLOAD_URL_CHECKS_CANCELED,
DOWNLOAD_URL_CHECKS_MALWARE,
// Memory space for histograms is determined by the max.
// ALWAYS ADD NEW VALUES BEFORE THIS ONE.
DOWNLOAD_URL_CHECKS_MAX
};
friend class base::RefCountedThreadSafe<DownloadSBClient>;
virtual ~DownloadSBClient();
// Call DownloadManager on UI thread.
void SafeBrowsingCheckUrlDone(SafeBrowsingService::UrlCheckResult result);
// Update the UMA stats.
void UpdateDownloadUrlCheckStats(SBStatsType stat_type);
scoped_ptr<DoneCallback> done_callback_;
// Not owned by this class.
DownloadCreateInfo* info_;
scoped_refptr<SafeBrowsingService> sb_service_;
// When a safebrowsing URL check starts, for stats purpose.
base::TimeTicks start_time_;
DISALLOW_COPY_AND_ASSIGN(DownloadSBClient);
};
#endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SAFE_BROWSING_CLIENT_H_
|