OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 #include "chrome/browser/interstitials/chrome_metrics_helper.h" | 5 #include "chrome/browser/interstitials/chrome_metrics_helper.h" |
6 | 6 |
7 #include "chrome/browser/browser_process.h" | 7 #include "chrome/browser/browser_process.h" |
8 #include "chrome/browser/history/history_service_factory.h" | 8 #include "chrome/browser/history/history_service_factory.h" |
9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
10 #include "chrome/common/features.h" | 10 #include "chrome/common/features.h" |
11 #include "components/history/core/browser/history_service.h" | 11 #include "components/history/core/browser/history_service.h" |
12 #include "components/rappor/rappor_service.h" | 12 #include "components/rappor/rappor_service_impl.h" |
13 #include "content/public/browser/web_contents.h" | 13 #include "content/public/browser/web_contents.h" |
14 #include "extensions/features/features.h" | 14 #include "extensions/features/features.h" |
15 | 15 |
16 #if BUILDFLAG(ENABLE_EXTENSIONS) | 16 #if BUILDFLAG(ENABLE_EXTENSIONS) |
17 #include "chrome/browser/extensions/api/experience_sampling_private/experience_s
ampling.h" | 17 #include "chrome/browser/extensions/api/experience_sampling_private/experience_s
ampling.h" |
18 #endif | 18 #endif |
19 | 19 |
20 #if BUILDFLAG(ENABLE_CAPTIVE_PORTAL_DETECTION) | 20 #if BUILDFLAG(ENABLE_CAPTIVE_PORTAL_DETECTION) |
21 #include "chrome/browser/ssl/captive_portal_metrics_recorder.h" | 21 #include "chrome/browser/ssl/captive_portal_metrics_recorder.h" |
22 #endif | 22 #endif |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 case SET_EXTENDED_REPORTING_ENABLED: | 111 case SET_EXTENDED_REPORTING_ENABLED: |
112 case SET_EXTENDED_REPORTING_DISABLED: | 112 case SET_EXTENDED_REPORTING_DISABLED: |
113 case EXTENDED_REPORTING_IS_ENABLED: | 113 case EXTENDED_REPORTING_IS_ENABLED: |
114 case REPORT_PHISHING_ERROR: | 114 case REPORT_PHISHING_ERROR: |
115 case SHOW_WHITEPAPER: | 115 case SHOW_WHITEPAPER: |
116 case MAX_INTERACTION: | 116 case MAX_INTERACTION: |
117 break; | 117 break; |
118 } | 118 } |
119 #endif | 119 #endif |
120 } | 120 } |
OLD | NEW |