| Index: chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc
|
| diff --git a/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc b/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc
|
| index 9fed8fc7ef4f25e103125d2e8274337839867a64..bf331008d1c925a4ffbad014c642b31ff11feb51 100644
|
| --- a/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc
|
| +++ b/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc
|
| @@ -480,12 +480,14 @@ void LocalDiscoveryUIHandler::OnDeviceListUnavailable() {
|
| }
|
|
|
| void LocalDiscoveryUIHandler::GoogleSigninSucceeded(
|
| + const std::string& account_id,
|
| const std::string& username,
|
| const std::string& password) {
|
| CheckUserLoggedIn();
|
| }
|
|
|
| -void LocalDiscoveryUIHandler::GoogleSignedOut(const std::string& username) {
|
| +void LocalDiscoveryUIHandler::GoogleSignedOut(const std::string& account_id,
|
| + const std::string& username) {
|
| CheckUserLoggedIn();
|
| }
|
|
|
|
|