| 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/safe_browsing/chrome_cleaner/reporter_runner_win.h" | 5 #include "chrome/browser/safe_browsing/chrome_cleaner/reporter_runner_win.h" |
| 6 | 6 |
| 7 #include <initializer_list> | 7 #include <initializer_list> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <tuple> | 9 #include <tuple> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "chrome/browser/safe_browsing/chrome_cleaner/srt_chrome_prompt_impl.h" | 34 #include "chrome/browser/safe_browsing/chrome_cleaner/srt_chrome_prompt_impl.h" |
| 35 #include "chrome/browser/safe_browsing/chrome_cleaner/srt_client_info_win.h" | 35 #include "chrome/browser/safe_browsing/chrome_cleaner/srt_client_info_win.h" |
| 36 #include "chrome/browser/ui/browser.h" | 36 #include "chrome/browser/ui/browser.h" |
| 37 #include "chrome/browser/ui/browser_finder.h" | 37 #include "chrome/browser/ui/browser_finder.h" |
| 38 #include "chrome/browser/ui/test/test_browser_dialog.h" | 38 #include "chrome/browser/ui/test/test_browser_dialog.h" |
| 39 #include "chrome/common/pref_names.h" | 39 #include "chrome/common/pref_names.h" |
| 40 #include "chrome/test/base/in_process_browser_test.h" | 40 #include "chrome/test/base/in_process_browser_test.h" |
| 41 #include "components/chrome_cleaner/public/constants/constants.h" | 41 #include "components/chrome_cleaner/public/constants/constants.h" |
| 42 #include "components/component_updater/pref_names.h" | 42 #include "components/component_updater/pref_names.h" |
| 43 #include "components/prefs/pref_service.h" | 43 #include "components/prefs/pref_service.h" |
| 44 #include "components/safe_browsing_db/safe_browsing_prefs.h" | 44 #include "components/safe_browsing/common/safe_browsing_prefs.h" |
| 45 #include "mojo/edk/embedder/embedder.h" | 45 #include "mojo/edk/embedder/embedder.h" |
| 46 #include "mojo/edk/embedder/incoming_broker_client_invitation.h" | 46 #include "mojo/edk/embedder/incoming_broker_client_invitation.h" |
| 47 #include "mojo/edk/embedder/scoped_ipc_support.h" | 47 #include "mojo/edk/embedder/scoped_ipc_support.h" |
| 48 #include "mojo/edk/system/core.h" | 48 #include "mojo/edk/system/core.h" |
| 49 #include "testing/multiprocess_func_list.h" | 49 #include "testing/multiprocess_func_list.h" |
| 50 | 50 |
| 51 namespace safe_browsing { | 51 namespace safe_browsing { |
| 52 | 52 |
| 53 namespace { | 53 namespace { |
| 54 | 54 |
| (...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 // testing framework. | 967 // testing framework. |
| 968 IN_PROC_BROWSER_TEST_F(ReporterRunnerPromptTest, InvokeDialog_SRTErrorNoFile) { | 968 IN_PROC_BROWSER_TEST_F(ReporterRunnerPromptTest, InvokeDialog_SRTErrorNoFile) { |
| 969 RunDialog(); | 969 RunDialog(); |
| 970 } | 970 } |
| 971 | 971 |
| 972 IN_PROC_BROWSER_TEST_F(ReporterRunnerPromptTest, InvokeDialog_SRTErrorFile) { | 972 IN_PROC_BROWSER_TEST_F(ReporterRunnerPromptTest, InvokeDialog_SRTErrorFile) { |
| 973 RunDialog(); | 973 RunDialog(); |
| 974 } | 974 } |
| 975 | 975 |
| 976 } // namespace safe_browsing | 976 } // namespace safe_browsing |
| OLD | NEW |