| Index: content/browser/ssl/ssl_manager.h
|
| diff --git a/content/browser/ssl/ssl_manager.h b/content/browser/ssl/ssl_manager.h
|
| index 8128ee8e0491b2b2bce3ede602ddd4848781ba6d..11ebd311ce7fdbdfe98c87df936a5a95dafdc76b 100644
|
| --- a/content/browser/ssl/ssl_manager.h
|
| +++ b/content/browser/ssl/ssl_manager.h
|
| @@ -57,6 +57,12 @@ class CONTENT_EXPORT SSLManager {
|
| const net::SSLInfo& ssl_info,
|
| bool fatal);
|
|
|
| + // Called before an HTTP basic auth dialog is displayed.
|
| + static void OnAuthDialog(int render_process_id,
|
| + int render_frame_id,
|
| + const std::string& serialized_security_info,
|
| + bool is_main_frame);
|
| +
|
| // Called when SSL state for a host or tab changes.
|
| static void NotifySSLInternalStateChanged(BrowserContext* context);
|
|
|
| @@ -86,6 +92,9 @@ class CONTENT_EXPORT SSLManager {
|
| // notify the WebContents of an SSL state change if a change was
|
| // actually made.
|
| void UpdateEntry(NavigationEntryImpl* entry);
|
| + void UpdateEntry(const std::string& serialized_security_info,
|
| + bool is_main_frame,
|
| + NavigationEntryImpl* entry);
|
|
|
| // Notifies the WebContents that the SSL state changed.
|
| void NotifyDidChangeVisibleSSLState();
|
|
|