| 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 <utility> | 5 #include <utility> |
| 6 | 6 |
| 7 #include "chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.h" | 7 #include "chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.h" |
| 8 #include "chrome/browser/ui/browser.h" | 8 #include "chrome/browser/ui/browser.h" |
| 9 #include "chrome/browser/ui/browser_dialogs.h" | 9 #include "chrome/browser/ui/browser_dialogs.h" |
| 10 #include "chrome/browser/ui/views/bookmarks/bookmark_bubble_view.h" | 10 #include "chrome/browser/ui/views/bookmarks/bookmark_bubble_view.h" |
| 11 #include "chrome/browser/ui/views/content_setting_bubble_contents.h" | 11 #include "chrome/browser/ui/views/content_setting_bubble_contents.h" |
| 12 #include "chrome/browser/ui/views/page_info/website_settings_popup_view.h" |
| 12 #include "chrome/browser/ui/views/task_manager_view.h" | 13 #include "chrome/browser/ui/views/task_manager_view.h" |
| 13 #include "chrome/browser/ui/views/update_recommended_message_box.h" | 14 #include "chrome/browser/ui/views/update_recommended_message_box.h" |
| 14 #include "chrome/browser/ui/views/website_settings/website_settings_popup_view.h
" | |
| 15 | 15 |
| 16 // This file provides definitions of desktop browser dialog-creation methods for | 16 // This file provides definitions of desktop browser dialog-creation methods for |
| 17 // Mac where a Cocoa browser is using Views dialogs. I.e. it is included in the | 17 // Mac where a Cocoa browser is using Views dialogs. I.e. it is included in the |
| 18 // Cocoa build and definitions under chrome/browser/ui/cocoa may select at | 18 // Cocoa build and definitions under chrome/browser/ui/cocoa may select at |
| 19 // runtime whether to show a Cocoa dialog, or the toolkit-views dialog defined | 19 // runtime whether to show a Cocoa dialog, or the toolkit-views dialog defined |
| 20 // here (declared in browser_dialogs.h). | 20 // here (declared in browser_dialogs.h). |
| 21 | 21 |
| 22 namespace chrome { | 22 namespace chrome { |
| 23 | 23 |
| 24 void ShowWebsiteSettingsBubbleViewsAtPoint( | 24 void ShowWebsiteSettingsBubbleViewsAtPoint( |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 contents->set_parent_window(parent_view); | 77 contents->set_parent_window(parent_view); |
| 78 contents->SetAnchorRect(gfx::Rect(anchor, gfx::Size())); | 78 contents->SetAnchorRect(gfx::Rect(anchor, gfx::Size())); |
| 79 views::BubbleDialogDelegateView::CreateBubble(contents)->Show(); | 79 views::BubbleDialogDelegateView::CreateBubble(contents)->Show(); |
| 80 } | 80 } |
| 81 | 81 |
| 82 void ShowUpdateChromeDialogViews(gfx::NativeWindow parent) { | 82 void ShowUpdateChromeDialogViews(gfx::NativeWindow parent) { |
| 83 UpdateRecommendedMessageBox::Show(parent); | 83 UpdateRecommendedMessageBox::Show(parent); |
| 84 } | 84 } |
| 85 | 85 |
| 86 } // namespace chrome | 86 } // namespace chrome |
| OLD | NEW |