| Index: content/browser/ssl/ssl_policy.cc
|
| diff --git a/content/browser/ssl/ssl_policy.cc b/content/browser/ssl/ssl_policy.cc
|
| index 065c13e3ff443adf42a00def307644184b62686c..9cb80cd3c6b12e248c70df89d6d5b42a375c7df5 100644
|
| --- a/content/browser/ssl/ssl_policy.cc
|
| +++ b/content/browser/ssl/ssl_policy.cc
|
| @@ -251,8 +251,9 @@ void SSLPolicy::InitializeEntryIfNeeded(NavigationEntryImpl* entry) {
|
| if (entry->GetSSL().security_style != SECURITY_STYLE_UNKNOWN)
|
| return;
|
|
|
| - entry->GetSSL().security_style = entry->GetURL().SchemeIsCryptographic() ?
|
| - SECURITY_STYLE_AUTHENTICATED : SECURITY_STYLE_UNAUTHENTICATED;
|
| + entry->GetSSL().security_style = entry->GetURL().SchemeIsCryptographic()
|
| + ? SECURITY_STYLE_AUTHENTICATED
|
| + : SECURITY_STYLE_UNAUTHENTICATED;
|
| }
|
|
|
| void SSLPolicy::OriginRanInsecureContent(const std::string& origin, int pid) {
|
|
|