| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/extensions/chooser_dialog_view.h" | 5 #include "chrome/browser/ui/views/extensions/chooser_dialog_view.h" |
| 6 | 6 |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "base/threading/thread_task_runner_handle.h" | 8 #include "base/threading/thread_task_runner_handle.h" |
| 9 #include "chrome/browser/chooser_controller/chooser_controller.h" | 9 #include "chrome/browser/chooser_controller/chooser_controller.h" |
| 10 #include "chrome/browser/extensions/api/chrome_device_permissions_prompt.h" | 10 #include "chrome/browser/extensions/api/chrome_device_permissions_prompt.h" |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 return device_chooser_content_view_->IsDialogButtonEnabled(button); | 67 return device_chooser_content_view_->IsDialogButtonEnabled(button); |
| 68 } | 68 } |
| 69 | 69 |
| 70 views::View* ChooserDialogView::CreateFootnoteView() { | 70 views::View* ChooserDialogView::CreateFootnoteView() { |
| 71 return device_chooser_content_view_->footnote_link(); | 71 return device_chooser_content_view_->footnote_link(); |
| 72 } | 72 } |
| 73 | 73 |
| 74 views::ClientView* ChooserDialogView::CreateClientView(views::Widget* widget) { | 74 views::ClientView* ChooserDialogView::CreateClientView(views::Widget* widget) { |
| 75 views::DialogClientView* client = | 75 views::DialogClientView* client = |
| 76 new views::DialogClientView(widget, GetContentsView()); | 76 new views::DialogClientView(widget, GetContentsView()); |
| 77 | |
| 78 constexpr int kMinWidth = 402; | |
| 79 constexpr int kMinHeight = 320; | |
| 80 ChromeLayoutProvider* provider = ChromeLayoutProvider::Get(); | 77 ChromeLayoutProvider* provider = ChromeLayoutProvider::Get(); |
| 81 int min_width = provider->GetDialogPreferredWidth(DialogWidth::MEDIUM); | |
| 82 if (!min_width) | |
| 83 min_width = kMinWidth; | |
| 84 client->set_minimum_size(gfx::Size(min_width, kMinHeight)); | |
| 85 | |
| 86 client->set_button_row_insets(gfx::Insets( | 78 client->set_button_row_insets(gfx::Insets( |
| 87 provider->GetDistanceMetric(DISTANCE_UNRELATED_CONTROL_VERTICAL), 0, 0, | 79 provider->GetDistanceMetric(DISTANCE_UNRELATED_CONTROL_VERTICAL), 0, 0, |
| 88 0)); | 80 0)); |
| 89 return client; | 81 return client; |
| 90 } | 82 } |
| 91 | 83 |
| 92 views::NonClientFrameView* ChooserDialogView::CreateNonClientFrameView( | 84 views::NonClientFrameView* ChooserDialogView::CreateNonClientFrameView( |
| 93 views::Widget* widget) { | 85 views::Widget* widget) { |
| 94 // ChooserDialogView always has a parent, so ShouldUseCustomFrame() should | 86 // ChooserDialogView always has a parent, so ShouldUseCustomFrame() should |
| 95 // always be true. | 87 // always be true. |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 void ChromeDevicePermissionsPrompt::ShowDialogViews() { | 143 void ChromeDevicePermissionsPrompt::ShowDialogViews() { |
| 152 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | 144 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); |
| 153 | 145 |
| 154 std::unique_ptr<ChooserController> chooser_controller( | 146 std::unique_ptr<ChooserController> chooser_controller( |
| 155 new DevicePermissionsDialogController(web_contents()->GetMainFrame(), | 147 new DevicePermissionsDialogController(web_contents()->GetMainFrame(), |
| 156 prompt())); | 148 prompt())); |
| 157 | 149 |
| 158 constrained_window::ShowWebModalDialogViews( | 150 constrained_window::ShowWebModalDialogViews( |
| 159 new ChooserDialogView(std::move(chooser_controller)), web_contents()); | 151 new ChooserDialogView(std::move(chooser_controller)), web_contents()); |
| 160 } | 152 } |
| OLD | NEW |