Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: chrome/browser/safe_browsing/incident_report_uploader.h

Issue 379563006: Merge 281089 "Include the latest binary download info in safe br..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/2062/src/
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORT_UPLOADER_H_ 5 #ifndef CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORT_UPLOADER_H_
6 #define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORT_UPLOADER_H_ 6 #define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORT_UPLOADER_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 10
11 namespace safe_browsing { 11 namespace safe_browsing {
12 12
13 class ClientIncidentResponse; 13 class ClientIncidentResponse;
14 14
15 // An abstract base class for a facility that uploads incident reports. 15 // An abstract base class for a facility that uploads incident reports.
16 class IncidentReportUploader { 16 class IncidentReportUploader {
17 public: 17 public:
18 // The result of a report upload. Values here are used for UMA so they must 18 // The result of a report upload. Values here are used for UMA so they must
19 // not be changed. 19 // not be changed.
20 enum Result { 20 enum Result {
21 UPLOAD_SUCCESS = 0, // A response was received. 21 UPLOAD_SUCCESS = 0, // A response was received.
22 UPLOAD_SUPPRESSED = 1, // The request was suppressed. 22 UPLOAD_SUPPRESSED = 1, // The request was suppressed.
23 UPLOAD_INVALID_REQUEST = 2, // The request was invalid. 23 UPLOAD_INVALID_REQUEST = 2, // The request was invalid.
24 UPLOAD_CANCELLED = 3, // The upload was cancelled. 24 UPLOAD_CANCELLED = 3, // The upload was cancelled.
25 UPLOAD_REQUEST_FAILED = 4, // Upload failed. 25 UPLOAD_REQUEST_FAILED = 4, // Upload failed.
26 UPLOAD_INVALID_RESPONSE = 5, // The response was not recognized. 26 UPLOAD_INVALID_RESPONSE = 5, // The response was not recognized.
27 UPLOAD_NO_DOWNLOAD = 6, // No last download was found.
27 NUM_UPLOAD_RESULTS 28 NUM_UPLOAD_RESULTS
28 }; 29 };
29 30
30 // A callback run by the uploader upon success or failure. The first argument 31 // A callback run by the uploader upon success or failure. The first argument
31 // indicates the result of the upload, while the second contains the response 32 // indicates the result of the upload, while the second contains the response
32 // received, if any. 33 // received, if any.
33 typedef base::Callback<void(Result, scoped_ptr<ClientIncidentResponse>)> 34 typedef base::Callback<void(Result, scoped_ptr<ClientIncidentResponse>)>
34 OnResultCallback; 35 OnResultCallback;
35 36
36 virtual ~IncidentReportUploader(); 37 virtual ~IncidentReportUploader();
37 38
38 protected: 39 protected:
39 explicit IncidentReportUploader(const OnResultCallback& callback); 40 explicit IncidentReportUploader(const OnResultCallback& callback);
40 41
41 // The callback by which results are returned. 42 // The callback by which results are returned.
42 OnResultCallback callback_; 43 OnResultCallback callback_;
43 }; 44 };
44 45
45 } // namespace safe_browsing 46 } // namespace safe_browsing
46 47
47 #endif // CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORT_UPLOADER_H_ 48 #endif // CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORT_UPLOADER_H_
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/download_protection_service.cc ('k') | chrome/browser/safe_browsing/incident_reporting_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698