| Index: chrome/browser/ui/browser_dialogs.h
|
| diff --git a/chrome/browser/ui/browser_dialogs.h b/chrome/browser/ui/browser_dialogs.h
|
| index f83ddbe0b3584b3d1360e032f48b9a2ea88ceebf..1279de689236125b11e753a90f5a3540f4a4881b 100644
|
| --- a/chrome/browser/ui/browser_dialogs.h
|
| +++ b/chrome/browser/ui/browser_dialogs.h
|
| @@ -10,6 +10,7 @@
|
| #include "ui/gfx/native_widget_types.h"
|
|
|
| class Browser;
|
| +class GURL;
|
| class LoginHandler;
|
| class Profile;
|
| class SkBitmap;
|
| @@ -17,6 +18,7 @@ class SkBitmap;
|
| namespace content {
|
| class BrowserContext;
|
| class ColorChooser;
|
| +struct SSLStatus;
|
| class WebContents;
|
| }
|
|
|
| @@ -24,6 +26,10 @@ namespace extensions {
|
| class Extension;
|
| }
|
|
|
| +namespace gfx {
|
| +class Point;
|
| +}
|
| +
|
| namespace net {
|
| class AuthChallengeInfo;
|
| class URLRequest;
|
| @@ -81,6 +87,13 @@ content::ColorChooser* ShowColorChooser(content::WebContents* web_contents,
|
| // dialog using one of the functions below, rather than showing a Cocoa dialog.
|
| bool ToolkitViewsDialogsEnabled();
|
|
|
| +// Shows a Views website settings bubble at the given anchor point.
|
| +void ShowWebsiteSettingsBubbleViewsAtPoint(const gfx::Point& anchor_point,
|
| + Profile* profile,
|
| + content::WebContents* web_contents,
|
| + const GURL& url,
|
| + const content::SSLStatus& ssl);
|
| +
|
| #endif // OS_MACOSX
|
|
|
| #if defined(TOOLKIT_VIEWS)
|
|
|