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

Side by Side Diff: chrome/browser/safe_browsing/incident_reporting/omnibox_interaction_incident.h

Issue 856543004: Replace incident type handlers with implementations of Incident. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_OMNIBOX_INTERACTION_INCI DENT_H_
6 #define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_OMNIBOX_INTERACTION_INCI DENT_H_
7
8 #include "base/memory/scoped_ptr.h"
9 #include "chrome/browser/safe_browsing/incident_reporting/incident.h"
10
11 namespace safe_browsing {
12
13 class ClientIncidentReport_IncidentData_OmniboxInteractionIncident;
14
15 // An incident representing a suspicious omnibox interaction.
16 class OmniboxInteractionIncident : public Incident {
17 public:
18 explicit OmniboxInteractionIncident(
19 scoped_ptr<ClientIncidentReport_IncidentData_OmniboxInteractionIncident>
20 omnibox_interaction);
21 ~OmniboxInteractionIncident() override;
22
23 // Incident:
24
25 // Returns IncidentType::OMNIBOX_INTERACTION.
26 IncidentType GetType() const override;
27
28 // Returns a constant.
29 std::string GetKey() const override;
30
31 // Returns a constant.
32 uint32_t ComputeDigest() const override;
33
34 private:
35 DISALLOW_COPY_AND_ASSIGN(OmniboxInteractionIncident);
36 };
37
38 } // namespace safe_browsing
39
40 #endif // CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_OMNIBOX_INTERACTION_I NCIDENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698