| Index: net/http/url_security_manager_win.cc
|
| diff --git a/net/http/url_security_manager_win.cc b/net/http/url_security_manager_win.cc
|
| index 614fa443255e942edac348f9dc262c5485f2427a..d56a1b871040d7a3f098f733a48b9735fd9dc9c5 100644
|
| --- a/net/http/url_security_manager_win.cc
|
| +++ b/net/http/url_security_manager_win.cc
|
| @@ -103,11 +103,11 @@ bool URLSecurityManagerWin::CanUseDefaultCredentials(
|
| // TODO(cbentzel): Could CanDelegate use the security zone as well?
|
|
|
| bool URLSecurityManagerWin::EnsureSystemSecurityManager() {
|
| - if (!security_manager_.get()) {
|
| + if (!security_manager_.Get()) {
|
| HRESULT hr = CoInternetCreateSecurityManager(NULL,
|
| security_manager_.Receive(),
|
| NULL);
|
| - if (FAILED(hr) || !security_manager_.get()) {
|
| + if (FAILED(hr) || !security_manager_.Get()) {
|
| LOG(ERROR) << "Unable to create the Windows Security Manager instance";
|
| return false;
|
| }
|
|
|