| 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 "components/history/core/browser/history_service.h" | 10 #include "components/history/core/browser/history_service.h" |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 break; | 103 break; |
| 104 case SHOW_PRIVACY_POLICY: | 104 case SHOW_PRIVACY_POLICY: |
| 105 case SHOW_DIAGNOSTIC: | 105 case SHOW_DIAGNOSTIC: |
| 106 case RELOAD: | 106 case RELOAD: |
| 107 case OPEN_TIME_SETTINGS: | 107 case OPEN_TIME_SETTINGS: |
| 108 case TOTAL_VISITS: | 108 case TOTAL_VISITS: |
| 109 case SET_EXTENDED_REPORTING_ENABLED: | 109 case SET_EXTENDED_REPORTING_ENABLED: |
| 110 case SET_EXTENDED_REPORTING_DISABLED: | 110 case SET_EXTENDED_REPORTING_DISABLED: |
| 111 case EXTENDED_REPORTING_IS_ENABLED: | 111 case EXTENDED_REPORTING_IS_ENABLED: |
| 112 case REPORT_PHISHING_ERROR: | 112 case REPORT_PHISHING_ERROR: |
| 113 case SHOW_WHITEPAPER: |
| 113 case MAX_INTERACTION: | 114 case MAX_INTERACTION: |
| 114 break; | 115 break; |
| 115 } | 116 } |
| 116 #endif | 117 #endif |
| 117 } | 118 } |
| OLD | NEW |