| Index: chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h | 
| diff --git a/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h b/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h | 
| index 0261ab2ff6e834cc6a733c7bf8cdcc31fc266499..3412b8cebf57da3a4f89d7b69646f8a0cc855acd 100644 | 
| --- a/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h | 
| +++ b/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h | 
| @@ -94,9 +94,11 @@ class LocalDiscoveryUIHandler : public content::WebUIMessageHandler, | 
| virtual void OnDeviceListUnavailable() OVERRIDE; | 
|  | 
| // SigninManagerBase::Observer implementation. | 
| -  virtual void GoogleSigninSucceeded(const std::string& username, | 
| +  virtual void GoogleSigninSucceeded(const std::string& account_id, | 
| +                                     const std::string& username, | 
| const std::string& password) OVERRIDE; | 
| -  virtual void GoogleSignedOut(const std::string& username) OVERRIDE; | 
| +  virtual void GoogleSignedOut(const std::string& account_id, | 
| +                               const std::string& username) OVERRIDE; | 
|  | 
| private: | 
| typedef std::map<std::string, DeviceDescription> DeviceDescriptionMap; | 
|  |