| 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/ui/views/download/download_in_progress_dialog_view.h" | 5 #include "chrome/browser/ui/views/download/download_in_progress_dialog_view.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
| 10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
| 11 #include "chrome/browser/ui/views/constrained_window_views.h" |
| 11 #include "grit/chromium_strings.h" | 12 #include "grit/chromium_strings.h" |
| 12 #include "grit/generated_resources.h" | 13 #include "grit/generated_resources.h" |
| 13 #include "grit/locale_settings.h" | 14 #include "grit/locale_settings.h" |
| 14 #include "ui/base/l10n/l10n_util.h" | 15 #include "ui/base/l10n/l10n_util.h" |
| 15 #include "ui/base/resource/resource_bundle.h" | 16 #include "ui/base/resource/resource_bundle.h" |
| 16 #include "ui/gfx/size.h" | 17 #include "ui/gfx/size.h" |
| 17 #include "ui/views/border.h" | 18 #include "ui/views/border.h" |
| 18 #include "ui/views/controls/message_box_view.h" | 19 #include "ui/views/controls/message_box_view.h" |
| 19 #include "ui/views/layout/grid_layout.h" | 20 #include "ui/views/layout/grid_layout.h" |
| 20 #include "ui/views/widget/widget.h" | 21 #include "ui/views/widget/widget.h" |
| 21 | 22 |
| 22 // static | 23 // static |
| 23 void DownloadInProgressDialogView::Show(Browser* browser, | 24 void DownloadInProgressDialogView::Show(Browser* browser, |
| 24 gfx::NativeWindow parent) { | 25 gfx::NativeWindow parent) { |
| 25 DownloadInProgressDialogView* window = | 26 DownloadInProgressDialogView* window = |
| 26 new DownloadInProgressDialogView(browser); | 27 new DownloadInProgressDialogView(browser); |
| 27 views::DialogDelegate::CreateDialogWidget(window, NULL, parent)->Show(); | 28 CreateBrowserModalDialogViews(window, parent)->Show(); |
| 28 } | 29 } |
| 29 | 30 |
| 30 DownloadInProgressDialogView::DownloadInProgressDialogView(Browser* browser) | 31 DownloadInProgressDialogView::DownloadInProgressDialogView(Browser* browser) |
| 31 : browser_(browser), | 32 : browser_(browser), |
| 32 message_box_view_(NULL) { | 33 message_box_view_(NULL) { |
| 33 int download_count; | 34 int download_count; |
| 34 Browser::DownloadClosePreventionType dialog_type = | 35 Browser::DownloadClosePreventionType dialog_type = |
| 35 browser_->OkToCloseWithInProgressDownloads(&download_count); | 36 browser_->OkToCloseWithInProgressDownloads(&download_count); |
| 36 | 37 |
| 37 string16 explanation_text; | 38 string16 explanation_text; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 return message_box_view_->GetWidget(); | 118 return message_box_view_->GetWidget(); |
| 118 } | 119 } |
| 119 | 120 |
| 120 const views::Widget* DownloadInProgressDialogView::GetWidget() const { | 121 const views::Widget* DownloadInProgressDialogView::GetWidget() const { |
| 121 return message_box_view_->GetWidget(); | 122 return message_box_view_->GetWidget(); |
| 122 } | 123 } |
| 123 | 124 |
| 124 views::View* DownloadInProgressDialogView::GetContentsView() { | 125 views::View* DownloadInProgressDialogView::GetContentsView() { |
| 125 return message_box_view_; | 126 return message_box_view_; |
| 126 } | 127 } |
| OLD | NEW |