| 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 #ifndef CHROME_BROWSER_SAFE_BROWSING_SRT_FETCHER_WIN_H_ | 5 #ifndef CHROME_BROWSER_SAFE_BROWSING_CHROME_CLEANER_SRT_FETCHER_WIN_H_ |
| 6 #define CHROME_BROWSER_SAFE_BROWSING_SRT_FETCHER_WIN_H_ | 6 #define CHROME_BROWSER_SAFE_BROWSING_CHROME_CLEANER_SRT_FETCHER_WIN_H_ |
| 7 | 7 |
| 8 #include <limits.h> | 8 #include <limits.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <queue> | 11 #include <queue> |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
| 15 #include "base/feature_list.h" | 15 #include "base/feature_list.h" |
| 16 #include "base/process/launch.h" | 16 #include "base/process/launch.h" |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 // Set a delegate for testing. The implementation will not take ownership of | 150 // Set a delegate for testing. The implementation will not take ownership of |
| 151 // |delegate| - it must remain valid until this function is called again to | 151 // |delegate| - it must remain valid until this function is called again to |
| 152 // reset the delegate. If |delegate| is nullptr, any previous delegate is | 152 // reset the delegate. If |delegate| is nullptr, any previous delegate is |
| 153 // cleared. | 153 // cleared. |
| 154 void SetSwReporterTestingDelegate(SwReporterTestingDelegate* delegate); | 154 void SetSwReporterTestingDelegate(SwReporterTestingDelegate* delegate); |
| 155 | 155 |
| 156 void DisplaySRTPromptForTesting(const base::FilePath& download_path); | 156 void DisplaySRTPromptForTesting(const base::FilePath& download_path); |
| 157 | 157 |
| 158 } // namespace safe_browsing | 158 } // namespace safe_browsing |
| 159 | 159 |
| 160 #endif // CHROME_BROWSER_SAFE_BROWSING_SRT_FETCHER_WIN_H_ | 160 #endif // CHROME_BROWSER_SAFE_BROWSING_CHROME_CLEANER_SRT_FETCHER_WIN_H_ |
| OLD | NEW |