| Index: chrome/browser/profiles/profile_io_data.cc
|
| diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc
|
| index a3da86cfbb76e71f950fe687acfb4650faf685f1..4f321bfdeeac8cf585d8005743af05b0382e6602 100644
|
| --- a/chrome/browser/profiles/profile_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_io_data.cc
|
| @@ -160,7 +160,8 @@ bool IsSupportedDevToolsURL(const GURL& url, base::FilePath* path) {
|
|
|
| if (!url.SchemeIs(content::kChromeDevToolsScheme) ||
|
| url.host() != chrome::kChromeUIDevToolsHost ||
|
| - !base::StartsWithASCII(url.path(), bundled_path_prefix, false)) {
|
| + !base::StartsWith(url.path(), bundled_path_prefix,
|
| + base::CompareCase::INSENSITIVE_ASCII)) {
|
| return false;
|
| }
|
|
|
|
|