| 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 3cf6c8c7ac7edd52968a7c1f1016c0bf1c6b9458..e255b741201cea8e6fe662ba0d77815bb745bf5b 100644
|
| --- a/remoting/host/setup/win/auth_code_getter.cc
|
| +++ b/remoting/host/setup/win/auth_code_getter.cc
|
| @@ -27,7 +27,7 @@ AuthCodeGetter::~AuthCodeGetter() {
|
|
|
| void AuthCodeGetter::GetAuthCode(
|
| base::Callback<void(const std::string&)> on_auth_code) {
|
| - if (browser_.get()) {
|
| + if (browser_.Get()) {
|
| on_auth_code.Run("");
|
| return;
|
| }
|
| @@ -67,7 +67,7 @@ void AuthCodeGetter::OnTimer() {
|
|
|
| bool AuthCodeGetter::TestBrowserUrl(std::string* auth_code) {
|
| *auth_code = "";
|
| - if (!browser_.get()) {
|
| + if (!browser_.Get()) {
|
| return true;
|
| }
|
| base::win::ScopedBstr url;
|
| @@ -86,7 +86,7 @@ bool AuthCodeGetter::TestBrowserUrl(std::string* auth_code) {
|
| }
|
|
|
| void AuthCodeGetter::KillBrowser() {
|
| - if (browser_.get()) {
|
| + if (browser_.Get()) {
|
| browser_->Quit();
|
| browser_.Reset();
|
| }
|
|
|