| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/download/download_danger_prompt.h" | 5 #include "chrome/browser/download/download_danger_prompt.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
| 9 #include "chrome/browser/chrome_notification_types.h" | 9 #include "chrome/browser/chrome_notification_types.h" |
| 10 #include "chrome/browser/download/chrome_download_manager_delegate.h" | 10 #include "chrome/browser/download/chrome_download_manager_delegate.h" |
| 11 #include "chrome/browser/download/download_stats.h" | 11 #include "chrome/browser/download/download_stats.h" |
| 12 #include "chrome/browser/extensions/api/experience_sampling_private/experience_s
ampling.h" | 12 #include "chrome/browser/extensions/api/experience_sampling_private/experience_s
ampling.h" |
| 13 #include "chrome/browser/ui/tab_modal_confirm_dialog.h" | 13 #include "chrome/browser/ui/tab_modal_confirm_dialog.h" |
| 14 #include "chrome/browser/ui/tab_modal_confirm_dialog_delegate.h" | 14 #include "chrome/browser/ui/tab_modal_confirm_dialog_delegate.h" |
| 15 #include "chrome/grit/chromium_strings.h" |
| 16 #include "chrome/grit/generated_resources.h" |
| 15 #include "content/public/browser/download_danger_type.h" | 17 #include "content/public/browser/download_danger_type.h" |
| 16 #include "content/public/browser/download_item.h" | 18 #include "content/public/browser/download_item.h" |
| 17 #include "grit/chromium_strings.h" | |
| 18 #include "grit/generated_resources.h" | |
| 19 #include "ui/base/l10n/l10n_util.h" | 19 #include "ui/base/l10n/l10n_util.h" |
| 20 | 20 |
| 21 using extensions::ExperienceSamplingEvent; | 21 using extensions::ExperienceSamplingEvent; |
| 22 | 22 |
| 23 namespace { | 23 namespace { |
| 24 | 24 |
| 25 // TODO(wittman): Create a native web contents modal dialog implementation of | 25 // TODO(wittman): Create a native web contents modal dialog implementation of |
| 26 // this dialog for non-Views platforms, to support bold formatting of the | 26 // this dialog for non-Views platforms, to support bold formatting of the |
| 27 // message lead. | 27 // message lead. |
| 28 | 28 |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 content::WebContents* web_contents, | 256 content::WebContents* web_contents, |
| 257 bool show_context, | 257 bool show_context, |
| 258 const OnDone& done) { | 258 const OnDone& done) { |
| 259 DownloadDangerPromptImpl* prompt = new DownloadDangerPromptImpl( | 259 DownloadDangerPromptImpl* prompt = new DownloadDangerPromptImpl( |
| 260 item, web_contents, show_context, done); | 260 item, web_contents, show_context, done); |
| 261 // |prompt| will be deleted when the dialog is done. | 261 // |prompt| will be deleted when the dialog is done. |
| 262 TabModalConfirmDialog::Create(prompt, web_contents); | 262 TabModalConfirmDialog::Create(prompt, web_contents); |
| 263 return prompt; | 263 return prompt; |
| 264 } | 264 } |
| 265 #endif | 265 #endif |
| OLD | NEW |