blob: 2600c3e9c0a03bc1322a6f33fe173c50e0be39b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_PAGE_INFO_BUBBLE_H_
#define CHROME_BROWSER_UI_PAGE_INFO_BUBBLE_H_
#include "ui/gfx/native_widget_types.h"
class GURL;
namespace content {
class PageNavigator;
class WebContents;
struct SSLStatus;
}
namespace chrome {
void ShowPageInfoBubble(gfx::NativeWindow parent,
content::WebContents* web_contents,
const GURL& url,
const content::SSLStatus& ssl,
bool show_history,
content::PageNavigator* navigator);
} // namespace chrome
#endif // CHROME_BROWSER_UI_PAGE_INFO_BUBBLE_H_
|