Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(486)

Side by Side Diff: chrome/browser/ui/views/browser_dialogs_views_mac.cc

Issue 1280673003: [Mac] Enable MacViews site settings bubble behind --enable-mac-views-dialogs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@enabledialogs
Patch Set: Missed a comment. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 #include "content/public/browser/web_contents_observer.h"
msw 2015/08/17 17:31:44 This doesn't seem to be needed, forward declare co
jackhou1 2015/08/18 01:20:53 Done.
9 #include "ui/views/widget/widget_observer.h"
msw 2015/08/17 17:31:45 This doesn't seem to be needed.
jackhou1 2015/08/18 01:20:53 Done.
10
11 // This file provides definitions of desktop browser dialog-creation methods for
msw 2015/08/17 17:31:44 q: Why doesn't this match Trent's pattern from htt
jackhou1 2015/08/18 01:20:53 Updated this comment to mention how it fits into b
tapted 2015/08/18 01:29:51 Another aspect behind the difference is that ShowW
msw 2015/08/18 02:40:32 Acknowledged.
12 // Mac where a Cocoa browser is using Views dialogs.
13
14 namespace chrome {
15
16 void ShowWebsiteSettingsBubbleViewsAtPoint(const gfx::Point& anchor_point,
17 Profile* profile,
18 content::WebContents* web_contents,
19 const GURL& url,
20 const content::SSLStatus& ssl) {
21 WebsiteSettingsPopupView::ShowPopupAtRect(
22 gfx::Rect(anchor_point, gfx::Size()), profile, web_contents, url, ssl);
23 }
24
25 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698