| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/ui/browser_dialogs.h" |
| 6 |
| 7 #include "chrome/browser/ui/views/website_settings/website_settings_popup_view.h
" |
| 8 |
| 9 // This file provides definitions of desktop browser dialog-creation methods for |
| 10 // Mac where a Cocoa browser is using Views dialogs. I.e. it is included in the |
| 11 // Cocoa build and definitions under chrome/browser/ui/cocoa may select at |
| 12 // runtime whether to show a Cocoa dialog, or the toolkit-views dialog defined |
| 13 // here (declared in browser_dialogs.h). |
| 14 |
| 15 namespace chrome { |
| 16 |
| 17 void ShowWebsiteSettingsBubbleViewsAtPoint(const gfx::Point& anchor_point, |
| 18 Profile* profile, |
| 19 content::WebContents* web_contents, |
| 20 const GURL& url, |
| 21 const content::SSLStatus& ssl) { |
| 22 WebsiteSettingsPopupView::ShowPopup(nullptr, |
| 23 gfx::Rect(anchor_point, gfx::Size()), |
| 24 profile, web_contents, url, ssl); |
| 25 } |
| 26 |
| 27 } // namespace chrome |
| OLD | NEW |