| Index: remoting/host/setup/win/auth_code_getter.cc
|
| diff --git a/remoting/host/setup/win/auth_code_getter.cc b/remoting/host/setup/win/auth_code_getter.cc
|
| index 04f3f905005f601e8e163864e15f7a11f3b8db00..7316c511228a3b1e93095f8c84ebae3a3193d491 100644
|
| --- a/remoting/host/setup/win/auth_code_getter.cc
|
| +++ b/remoting/host/setup/win/auth_code_getter.cc
|
| @@ -17,7 +17,7 @@ const int kUrlPollIntervalMs = 100;
|
| namespace remoting {
|
|
|
| AuthCodeGetter::AuthCodeGetter() :
|
| - browser_(NULL),
|
| + browser_(nullptr),
|
| timer_interval_(base::TimeDelta::FromMilliseconds(kUrlPollIntervalMs)) {
|
| }
|
|
|
| @@ -32,7 +32,7 @@ void AuthCodeGetter::GetAuthCode(
|
| return;
|
| }
|
| on_auth_code_ = on_auth_code;
|
| - HRESULT hr = browser_.CreateInstance(CLSID_InternetExplorer, NULL,
|
| + HRESULT hr = browser_.CreateInstance(CLSID_InternetExplorer, nullptr,
|
| CLSCTX_LOCAL_SERVER);
|
| if (FAILED(hr)) {
|
| on_auth_code_.Run("");
|
|
|