| 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 23833b1d91f523a145667f596bf32d9ba6e8dc8b..6c79b5a23b8fa9be110b0c923b64c8621d65eb04 100644
|
| --- a/chrome/browser/ui/webui/interstitials/interstitial_ui.cc
|
| +++ b/chrome/browser/ui/webui/interstitials/interstitial_ui.cc
|
| @@ -182,9 +182,10 @@ void InterstitialHTMLSource::StartDataRequest(
|
| int render_frame_id,
|
| const content::URLDataSource::GotDataCallback& callback) {
|
| scoped_ptr<content::InterstitialPageDelegate> interstitial_delegate;
|
| - if (base::StartsWithASCII(path, "ssl", true)) {
|
| + if (base::StartsWith(path, "ssl", base::CompareCase::SENSITIVE)) {
|
| interstitial_delegate.reset(CreateSSLBlockingPage(web_contents_));
|
| - } else if (base::StartsWithASCII(path, "safebrowsing", true)) {
|
| + } else if (base::StartsWith(path, "safebrowsing",
|
| + base::CompareCase::SENSITIVE)) {
|
| interstitial_delegate.reset(CreateSafeBrowsingBlockingPage(web_contents_));
|
| }
|
|
|
|
|