| Index: chrome/test/chromedriver/chrome/web_view_impl.cc
 | 
| diff --git a/chrome/test/chromedriver/chrome/web_view_impl.cc b/chrome/test/chromedriver/chrome/web_view_impl.cc
 | 
| index 93be27e699056e33bd31fdb4bd4812f95dc2c027..576bea2df38349f10bfffa951d49ff0aac414acd 100644
 | 
| --- a/chrome/test/chromedriver/chrome/web_view_impl.cc
 | 
| +++ b/chrome/test/chromedriver/chrome/web_view_impl.cc
 | 
| @@ -155,7 +155,7 @@ Status WebViewImpl::HandleReceivedEvents() {
 | 
|  Status WebViewImpl::Load(const std::string& url) {
 | 
|    // Javascript URLs will cause a hang while waiting for the page to stop
 | 
|    // loading, so just disallow.
 | 
| -  if (StartsWithASCII(url, "javascript:", false))
 | 
| +  if (base::StartsWithASCII(url, "javascript:", false))
 | 
|      return Status(kUnknownError, "unsupported protocol");
 | 
|    base::DictionaryValue params;
 | 
|    params.SetString("url", url);
 | 
| 
 |