| Index: content/browser/ssl/ssl_manager.h
|
| diff --git a/content/browser/ssl/ssl_manager.h b/content/browser/ssl/ssl_manager.h
|
| index d4fca43e6b994112abda28baccf97cdeb5450ede..212f936bd2de45e73640abd5564e5d4f448f9d20 100644
|
| --- a/content/browser/ssl/ssl_manager.h
|
| +++ b/content/browser/ssl/ssl_manager.h
|
| @@ -57,6 +57,12 @@ class 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);
|
|
|
| @@ -84,6 +90,9 @@ class SSLManager {
|
| private:
|
| // Update the NavigationEntry with our current state.
|
| void UpdateEntry(NavigationEntryImpl* entry);
|
| + void UpdateEntry(const std::string& serialized_security_info,
|
| + bool is_main_frame,
|
| + NavigationEntryImpl* entry);
|
|
|
| // The backend for the SSLPolicy to actuate its decisions.
|
| SSLPolicyBackend backend_;
|
|
|