OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/srt_global_error_win.h" | 5 #include "chrome/browser/safe_browsing/srt_global_error_win.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/files/file_util.h" | 11 #include "base/files/file_util.h" |
12 #include "base/prefs/pref_service.h" | 12 #include "base/prefs/pref_service.h" |
13 #include "base/process/launch.h" | 13 #include "base/process/launch.h" |
14 #include "base/single_thread_task_runner.h" | 14 #include "base/single_thread_task_runner.h" |
15 #include "base/thread_task_runner_handle.h" | 15 #include "base/thread_task_runner_handle.h" |
16 #include "chrome/app/chrome_command_ids.h" | 16 #include "chrome/app/chrome_command_ids.h" |
17 #include "chrome/browser/browser_process.h" | 17 #include "chrome/browser/browser_process.h" |
18 #include "chrome/browser/safe_browsing/srt_field_trial_win.h" | 18 #include "chrome/browser/safe_browsing/srt_field_trial_win.h" |
19 #include "chrome/browser/ui/browser.h" | 19 #include "chrome/browser/ui/browser.h" |
20 #include "chrome/browser/ui/browser_finder.h" | 20 #include "chrome/browser/ui/browser_finder.h" |
21 #include "chrome/browser/ui/global_error/global_error_service.h" | 21 #include "chrome/browser/ui/global_error/global_error_service.h" |
| 22 #include "chrome/browser/ui/host_desktop.h" |
22 #include "components/component_updater/pref_names.h" | 23 #include "components/component_updater/pref_names.h" |
23 #include "content/public/browser/browser_thread.h" | 24 #include "content/public/browser/browser_thread.h" |
24 #include "grit/chromium_strings.h" | 25 #include "grit/chromium_strings.h" |
25 #include "grit/generated_resources.h" | 26 #include "grit/generated_resources.h" |
26 #include "ui/base/l10n/l10n_util.h" | 27 #include "ui/base/l10n/l10n_util.h" |
27 | 28 |
28 using base::SingleThreadTaskRunner; | 29 using base::SingleThreadTaskRunner; |
29 using base::ThreadTaskRunnerHandle; | 30 using base::ThreadTaskRunnerHandle; |
30 using content::BrowserThread; | 31 using content::BrowserThread; |
31 | 32 |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 DestroySelf(); | 208 DestroySelf(); |
208 } | 209 } |
209 | 210 |
210 void SRTGlobalError::DestroySelf() { | 211 void SRTGlobalError::DestroySelf() { |
211 // This should only happen when user interacted with the bubble. | 212 // This should only happen when user interacted with the bubble. |
212 DCHECK(interacted_); | 213 DCHECK(interacted_); |
213 g_browser_process->local_state()->SetBoolean(prefs::kSwReporterPendingPrompt, | 214 g_browser_process->local_state()->SetBoolean(prefs::kSwReporterPendingPrompt, |
214 false); | 215 false); |
215 delete this; | 216 delete this; |
216 } | 217 } |
OLD | NEW |