| Index: chrome/browser/ui/webui/interstitials/interstitial_ui.cc
 | 
| diff --git a/chrome/browser/ui/webui/interstitials/interstitial_ui.cc b/chrome/browser/ui/webui/interstitials/interstitial_ui.cc
 | 
| index f71f025747404ed21965cd4bf4d3ea24f05d87ff..23833b1d91f523a145667f596bf32d9ba6e8dc8b 100644
 | 
| --- a/chrome/browser/ui/webui/interstitials/interstitial_ui.cc
 | 
| +++ b/chrome/browser/ui/webui/interstitials/interstitial_ui.cc
 | 
| @@ -182,9 +182,9 @@ void InterstitialHTMLSource::StartDataRequest(
 | 
|      int render_frame_id,
 | 
|      const content::URLDataSource::GotDataCallback& callback) {
 | 
|    scoped_ptr<content::InterstitialPageDelegate> interstitial_delegate;
 | 
| -  if (StartsWithASCII(path, "ssl", true)) {
 | 
| +  if (base::StartsWithASCII(path, "ssl", true)) {
 | 
|      interstitial_delegate.reset(CreateSSLBlockingPage(web_contents_));
 | 
| -  } else if (StartsWithASCII(path, "safebrowsing", true)) {
 | 
| +  } else if (base::StartsWithASCII(path, "safebrowsing", true)) {
 | 
|      interstitial_delegate.reset(CreateSafeBrowsingBlockingPage(web_contents_));
 | 
|    }
 | 
|  
 | 
| 
 |