| Index: remoting/host/remoting_me2me_host.cc
 | 
| diff --git a/remoting/host/remoting_me2me_host.cc b/remoting/host/remoting_me2me_host.cc
 | 
| index 6035c17c0b6a50335026de8f00b98d8dc08070ee..eeb65be313347ece9609b881b945df9ef6bf28c2 100644
 | 
| --- a/remoting/host/remoting_me2me_host.cc
 | 
| +++ b/remoting/host/remoting_me2me_host.cc
 | 
| @@ -1119,9 +1119,9 @@ void HostProcess::ApplyUsernamePolicy() {
 | 
|      }
 | 
|  
 | 
|      std::string username = GetUsername();
 | 
| -    bool shutdown = username.empty() ||
 | 
| -        !StartsWithASCII(host_owner_, username + std::string("@"),
 | 
| -                         false);
 | 
| +    bool shutdown =
 | 
| +        username.empty() ||
 | 
| +        !base::StartsWithASCII(host_owner_, username + std::string("@"), false);
 | 
|  
 | 
|  #if defined(OS_MACOSX)
 | 
|      // On Mac, we run as root at the login screen, so the username won't match.
 | 
| 
 |